tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Add support for Block Styles. add_theme_support( 'wp-block-styles' ); add_theme_support( 'editor-styles' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, and column width. */ add_editor_style( array( 'css/editor-style.css', get_template_directory_uri() . '/css/font-awesome.css', festate_fonts_url() ) ); /* * Set Custom Background */ add_theme_support( 'custom-background', array ('default-color' => '#ffffff') ); // Set the default content width. $GLOBALS['content_width'] = 900; // This theme uses wp_nav_menu() in header menu register_nav_menus( array( 'primary' => __( 'Primary Menu', 'festate' ), 'footer' => __( 'Footer Menu', 'festate' ), ) ); $defaults = array( 'flex-height' => false, 'flex-width' => false, 'header-text' => array( 'site-title', 'site-description' ), ); add_theme_support( 'custom-logo', $defaults ); // Define and register starter content to showcase the theme on new sites. $starter_content = array( 'widgets' => array( 'sidebar-widget-area' => array( 'search', 'recent-posts', 'categories', 'archives', ), 'footer-widget-area' => array( 'recent-comments' ), ), 'posts' => array( 'home', 'blog', 'about', 'contact' ), // Create the custom image attachments used as slides 'attachments' => array( 'image-slide-1' => array( 'post_title' => _x( 'Slider Image 1', 'Theme starter content', 'festate' ), 'file' => 'images/slider/1.jpg', // URL relative to the template directory. ), 'image-slide-2' => array( 'post_title' => _x( 'Slider Image 2', 'Theme starter content', 'festate' ), 'file' => 'images/slider/2.jpg', // URL relative to the template directory. ), 'image-slide-3' => array( 'post_title' => _x( 'Slider Image 3', 'Theme starter content', 'festate' ), 'file' => 'images/slider/3.jpg', // URL relative to the template directory. ), ), // Default to a static front page and assign the front and posts pages. 'options' => array( 'show_on_front' => 'page', 'page_on_front' => '{{home}}', 'page_for_posts' => '{{blog}}', ), // Set the front page section theme mods to the IDs of the core-registered pages. 'theme_mods' => array( 'festate_slider_display' => 1, 'festate_slide1_image' => '{{image-slider-1}}', 'festate_slide2_image' => '{{image-slider-2}}', 'festate_slide3_image' => '{{image-slider-3}}', ), 'nav_menus' => array( // Assign a menu to the "primary" location. 'primary' => array( 'name' => __( 'Primary Menu', 'festate' ), 'items' => array( 'link_home', 'page_blog', 'page_contact', 'page_about', ), ), // Assign a menu to the "footer" location. 'footer' => array( 'name' => __( 'Footer Menu', 'festate' ), 'items' => array( 'link_home', 'page_about', 'page_blog', 'page_contact', ), ), ), ); $starter_content = apply_filters( 'festate_starter_content', $starter_content ); add_theme_support( 'starter-content', $starter_content ); } endif; // festate_setup add_action( 'after_setup_theme', 'festate_setup' ); if ( ! function_exists( 'festate_display_slider' ) ) : /** * Displays Slider */ function festate_display_slider() { ?>
urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' ); } return $fonts_url; } endif; // festate_fonts_url if ( ! function_exists( 'festate_load_scripts' ) ) : /** * the main function to load scripts in the fEstate theme * if you add a new load of script, style, etc. you can use that function * instead of adding a new wp_enqueue_scripts action for it. */ function festate_load_scripts() { // load main stylesheet. wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array( ) ); wp_enqueue_style( 'animate-css', get_template_directory_uri() . '/css/animate.css', array( ) ); wp_enqueue_style( 'festate-style', get_stylesheet_uri(), array() ); wp_enqueue_style( 'festate-fonts', festate_fonts_url(), array(), null ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_enqueue_script( 'viewportchecker', get_template_directory_uri() . '/js/viewportchecker.js', array( 'jquery' ) ); // Load Utilities JS Script wp_enqueue_script( 'festate-js', get_template_directory_uri() . '/js/festate.js', array( 'jquery', 'viewportchecker' ) ); $data = array( 'loading_effect' => ( get_theme_mod('festate_animations_display', 1) == 1 ), ); wp_localize_script('festate-js', 'festate_options', $data); wp_enqueue_script( 'jquery-sldr', get_template_directory_uri() . '/js/jquery.sldr.js', array( 'jquery' ) ); } endif; // festate_load_scripts add_action( 'wp_enqueue_scripts', 'festate_load_scripts' ); if ( ! function_exists( 'festate_widgets_init' ) ) : /** * widgets-init action handler. Used to register widgets and register widget areas */ function festate_widgets_init() { // Register Sidebar Widget. register_sidebar( array ( 'name' => __( 'Sidebar Widget Area', 'festate'), 'id' => 'sidebar-widget-area', 'description' => __( 'The sidebar widget area', 'festate'), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); // Register Footer Widget register_sidebar( array ( 'name' => __( 'Footer Content Area', 'festate' ), 'id' => 'footer-widget-area', 'description' => __( 'The Footer Content widget area', 'festate' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '', ) ); } endif; // festate_widgets_init add_action( 'widgets_init', 'festate_widgets_init' ); if ( ! function_exists( 'festate_custom_header_setup' ) ) : /** * Set up the WordPress core custom header feature. * * @uses festate_header_style() */ function festate_custom_header_setup() { add_theme_support( 'custom-header', array ( 'default-image' => '', 'flex-height' => true, 'flex-width' => true, 'uploads' => true, 'width' => 900, 'height' => 100, 'default-text-color' => '#434343', 'wp-head-callback' => 'festate_header_style', ) ); } endif; // festate_custom_header_setup add_action( 'after_setup_theme', 'festate_custom_header_setup' ); if ( ! function_exists( 'festate_header_style' ) ) : /** * Styles the header image and text displayed on the blog. * * @see festate_custom_header_setup(). */ function festate_header_style() { $header_text_color = get_header_textcolor(); if ( ! has_header_image() && ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color || 'blank' === $header_text_color ) ) { return; } $headerImage = get_header_image(); ?> pro_text; $json['pro_url'] = esc_url( $this->pro_url ); return $json; } // Outputs the template protected function render_template() { ?>
  • {{ data.title }} <# if ( data.pro_text && data.pro_url ) { #> {{ data.pro_text }} <# } #>

  • setup_actions(); } return $instance; } // Constructor method. private function __construct() {} // Sets up initial actions. private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ) ); // Register scripts and styles for the controls. add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 ); } // Sets up the customizer sections. public function sections( $manager ) { // Load custom sections. // Register custom section types. $manager->register_section_type( 'festate_Customize_Section_Pro' ); // Register sections. $manager->add_section( new festate_Customize_Section_Pro( $manager, 'festate', array( 'title' => esc_html__( 'tEstate', 'festate' ), 'pro_text' => esc_html__( 'Upgrade to Pro', 'festate' ), 'pro_url' => esc_url( 'https://tishonator.com/product/testate' ) ) ) ); } // Loads theme customizer CSS. public function enqueue_control_scripts() { wp_enqueue_script( 'festate-customize-controls', trailingslashit( get_template_directory_uri() ) . 'js/customize-controls.js', array( 'customize-controls' ) ); wp_enqueue_style( 'festate-customize-controls', trailingslashit( get_template_directory_uri() ) . 'css/customize-controls.css' ); } } // Doing this customizer thang! festate_Customize::get_instance(); if ( ! function_exists( 'festate_customize_register' ) ) : /** * Add postMessage support for site title and description for the Theme Customizer. * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function festate_customize_register( $wp_customize ) { /** * Add Slider Section */ $wp_customize->add_section( 'festate_slider_section', array( 'title' => __( 'Slider', 'festate' ), 'capability' => 'edit_theme_options', ) ); // Add display slider option $wp_customize->add_setting( 'festate_slider_display', array( 'default' => 0, 'sanitize_callback' => 'festate_sanitize_checkbox', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'festate_slider_display', array( 'label' => __( 'Display Slider on a Static Front Page', 'festate' ), 'section' => 'festate_slider_section', 'settings' => 'festate_slider_display', 'type' => 'checkbox', ) ) ); for ($i = 1; $i <= 3; ++$i) { $slideImageId = 'festate_slide'.$i.'_image'; $defaultSliderImagePath = get_template_directory_uri().'/images/slider/'.$i.'.jpg'; // Add Slide Background Image $wp_customize->add_setting( $slideImageId, array( 'default' => $defaultSliderImagePath, 'sanitize_callback' => 'festate_sanitize_url' ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, $slideImageId, array( 'label' => sprintf( esc_html__( 'Slide #%s Image', 'festate' ), $i ), 'section' => 'festate_slider_section', 'settings' => $slideImageId, ) ) ); } /** * Add Animations Section */ $wp_customize->add_section( 'festate_animations_display', array( 'title' => __( 'Animations', 'festate' ), 'capability' => 'edit_theme_options', ) ); // Add display Animations option $wp_customize->add_setting( 'festate_animations_display', array( 'default' => 1, 'sanitize_callback' => 'festate_sanitize_checkbox', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'festate_animations_display', array( 'label' => __( 'Enable Animations', 'festate' ), 'section' => 'festate_animations_display', 'settings' => 'festate_animations_display', 'type' => 'checkbox', ) ) ); } endif; // festate_customize_register add_action( 'customize_register', 'festate_customize_register' ); if ( ! function_exists( 'festate_sanitize_checkbox' ) ) : /** * Sanitization callback for 'checkbox' type controls. This callback sanitizes `$checked` * as a boolean value, either TRUE or FALSE. * * @param bool $checked Whether the checkbox is checked. * @return bool Whether the checkbox is checked. */ function festate_sanitize_checkbox( $checked ) { // Boolean check. return ( ( isset( $checked ) && true == $checked ) ? true : false ); } endif; // festate_sanitize_checkbox if ( ! function_exists( 'festate_sanitize_url' ) ) : function festate_sanitize_url( $url ) { return esc_url_raw( $url ); } endif; // festate_sanitize_url /** * Fix skip link focus in IE11. * * This does not enqueue the script because it is tiny and because it is only for IE11, * thus it does not warrant having an entire dedicated blocking script being loaded. * * @link https://git.io/vWdr2 */ function festate_skip_link_focus_fix() { // The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`. ?>