Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
/
site
/
wp-content
/
themes
/
fairy
/
inc
:
customizer.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * fairy Theme Customizer * * @package fairy */ /** * Fairy Theme Customizer * * @package Fairy */ /** * Load Customizer Defult Settings * * Default value for the customizer set here. */ require get_template_directory() . '/candidthemes/customizer/customizer-default-values.php'; /** * Add postMessage support for site title and description for the Theme Customizer. * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function fairy_customize_register( $wp_customize ) { $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'render_callback' => 'fairy_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'fairy_customize_partial_blogdescription', ) ); } /* About Theme Section */ $wp_customize->add_section( 'fairy_about_theme_section', array( 'priority' => 5, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __( 'About Fairy', 'fairy' ), 'panel' => 'fairy_panel', ) ); $wp_customize->add_setting( 'upgrade_text', array( 'default' => '', 'sanitize_callback' => '__return_false' ) ); $wp_customize->add_control( new Fairy_Customize_Static_Text_Control( $wp_customize, 'upgrade_text', array( 'section' => 'fairy_about_theme_section', 'description' => array('') ) ) ); /** * Load customizer custom-controls */ require get_template_directory() . '/candidthemes/customizer-pro/customize-controls.php'; /** * Load Customizer Settings * * All the settings for appearance > customize */ require get_template_directory() . '/candidthemes/customizer/customizer-main-panel.php'; } add_action( 'customize_register', 'fairy_customize_register' ); /** * Render the site title for the selective refresh partial. * * @return void */ function fairy_customize_partial_blogname() { bloginfo( 'name' ); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function fairy_customize_partial_blogdescription() { bloginfo( 'description' ); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function fairy_customize_preview_js() { wp_enqueue_script( 'fairy-customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), _S_VERSION, true ); } add_action( 'customize_preview_init', 'fairy_customize_preview_js' ); /** * Customizer Styles */ function fairy_customizer_css() { wp_enqueue_style('fairy-customizer-css', get_template_directory_uri() . '/candidthemes/assets/custom/css/customizer-style.css', array(), '1.0.0'); } add_action( 'customize_controls_enqueue_scripts', 'fairy_customizer_css' );