add_panel( 'anderson_panel_options', array( 'priority' => 180, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => esc_html__( 'Theme Options', 'anderson-lite' ), 'description' => anderson_customize_theme_links(), ) ); // Add postMessage support for site title and description. $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; // Change default background section $wp_customize->get_control( 'background_color' )->section = 'background_image'; $wp_customize->get_section( 'background_image' )->title = esc_html__( 'Background', 'anderson-lite' ); // Add Display Site Title Setting $wp_customize->add_setting( 'anderson_theme_options[site_title]', array( 'default' => true, 'type' => 'option', 'transport' => 'refresh', 'sanitize_callback' => 'anderson_sanitize_checkbox' ) ); $wp_customize->add_control( 'anderson_theme_options[site_title]', array( 'label' => esc_html__( 'Display Site Title', 'anderson-lite' ), 'section' => 'title_tagline', 'settings' => 'anderson_theme_options[site_title]', 'type' => 'checkbox', 'priority' => 10 ) ); // Add Header Tagline option $wp_customize->add_setting( 'anderson_theme_options[header_tagline]', array( 'default' => false, 'type' => 'option', 'transport' => 'refresh', 'sanitize_callback' => 'anderson_sanitize_checkbox' ) ); $wp_customize->add_control( 'anderson_control_header_tagline', array( 'label' => esc_html__( 'Display Tagline below site title.', 'anderson-lite' ), 'section' => 'title_tagline', 'settings' => 'anderson_theme_options[header_tagline]', 'type' => 'checkbox', 'priority' => 11 ) ); // Add Header Image Link $wp_customize->add_setting( 'anderson_theme_options[custom_header_link]', array( 'default' => '', 'type' => 'option', 'transport' => 'refresh', 'sanitize_callback' => 'esc_url' ) ); $wp_customize->add_control( 'anderson_control_custom_header_link', array( 'label' => esc_html__( 'Header Image Link', 'anderson-lite' ), 'section' => 'header_image', 'settings' => 'anderson_theme_options[custom_header_link]', 'type' => 'url', 'priority' => 10 ) ); // Add Custom Header Hide Checkbox $wp_customize->add_setting( 'anderson_theme_options[custom_header_hide]', array( 'default' => false, 'type' => 'option', 'transport' => 'refresh', 'sanitize_callback' => 'anderson_sanitize_checkbox' ) ); $wp_customize->add_control( 'anderson_control_custom_header_hide', array( 'label' => esc_html__( 'Hide header image on front page', 'anderson-lite' ), 'section' => 'header_image', 'settings' => 'anderson_theme_options[custom_header_hide]', 'type' => 'checkbox', 'priority' => 15 ) ); } // Embed JS file to make Theme Customizer preview reload changes asynchronously. add_action( 'customize_preview_init', 'anderson_customize_preview_js' ); function anderson_customize_preview_js() { wp_enqueue_script( 'anderson-lite-customizer-preview', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20151202', true ); } // Embed CSS styles for Theme Customizer add_action( 'customize_controls_print_styles', 'anderson_customize_preview_css' ); function anderson_customize_preview_css() { wp_enqueue_style( 'anderson-lite-customizer-css', get_template_directory_uri() . '/css/customizer.css', array(), '20160915' ); } /** * Returns Theme Links */ function anderson_customize_theme_links() { ob_start(); ?>