get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; /*saved options*/ $options = acmephoto_get_theme_options(); /*get defaults options*/ $defaults = acmephoto_get_default_theme_options(); /* * file for feature panel of home page */ require_once acmephoto_file_directory('acmethemes/customizer/feature-section/feature-panel.php'); /* * file for header panel */ require_once acmephoto_file_directory('acmethemes/customizer/header-options/header-panel.php'); /* * file for customizer footer section */ require_once acmephoto_file_directory('acmethemes/customizer/footer-section/footer-section.php'); /* * file for design/layout panel */ require_once acmephoto_file_directory('acmethemes/customizer/design-options/design-panel.php'); /* * file for single post sections */ require_once acmephoto_file_directory('acmethemes/customizer/single-posts/single-post-section.php'); /* * file for options panel */ require_once acmephoto_file_directory('acmethemes/customizer/options/options-panel.php'); /* * file for options reset */ require_once acmephoto_file_directory('acmethemes/customizer/options/options-reset.php'); /*removing*/ $wp_customize->remove_panel('header_image'); $wp_customize->remove_control('header_textcolor'); } add_action( 'customize_register', 'acmephoto_customize_register' ); /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ function acmephoto_customize_preview_js() { wp_enqueue_script( 'acmephoto-customizer', get_template_directory_uri() . '/acmethemes/core/js/customizer.js', array( 'customize-preview' ), '1.0.0', true ); } add_action( 'customize_preview_init', 'acmephoto_customize_preview_js' ); /** * Theme Update Script for logo * * For backward compatibility */ function acmephoto_update_check() { global $wp_version; // Return if wp version less than 4.5 if ( version_compare( $wp_version, '4.5', '<' ) ) { return; } $acmephoto_saved_theme_options = acmephoto_get_theme_options(); $site_logo = ''; if( isset( $acmephoto_saved_theme_options['acmephoto-header-logo'] )){ $site_logo = esc_url( $acmephoto_saved_theme_options['acmephoto-header-logo'] ); } if ( empty( $site_logo ) ) { return; } /*converting url into attachment ID*/ $logo = attachment_url_to_postid( $site_logo ); if ( is_int( $logo ) ) { set_theme_mod( 'custom_logo', attachment_url_to_postid( $site_logo ) ); $acmephoto_saved_theme_options['acmephoto-header-logo'] = ''; set_theme_mod( 'acmephoto_theme_options', $acmephoto_saved_theme_options ); } } add_action( 'after_setup_theme', 'acmephoto_update_check' );