get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_section( 'title_tagline' )->panel = 'techup_general_panel'; $wp_customize->get_section( 'title_tagline' )->priority = '5'; $wp_customize->get_section( 'colors' )->panel = 'techup_general_panel'; $wp_customize->get_section( 'colors' )->priority = '10'; $wp_customize->get_section( 'static_front_page' )->panel = 'techup_general_panel'; $wp_customize->get_section( 'static_front_page' )->priority = '20'; $wp_customize->get_section( 'header_image' )->panel = 'techup_header_panel'; $wp_customize->get_section( 'header_image' )->priority = '5'; $wp_customize->get_section( 'header_image' )->title = __( 'Innerpage Header Image', 'techup' ); // $wp_customize->remove_section('background_image'); // $wp_customize->remove_setting('background_color'); if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'render_callback' => 'techup_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'techup_customize_partial_blogdescription', ) ); } } add_action( 'customize_register', 'techup_customize_register' ); /** * Render the site title for the selective refresh partial. * * @return void */ function techup_customize_partial_blogname() { bloginfo( 'name' ); } /** * Render the site tagline for the selective refresh partial. * * @return void */ function techup_customize_partial_blogdescription() { bloginfo( 'description' ); } /** * Binds JS handlers to make Theme Customizer preview reload changes asynchronously. */ /*--------------------------------------------------------------------------------------------------------------------------------------*/ /** * Enqueue required scripts/styles for customizer panel * * @since 1.0.0 */ /** * Add Kirki customizer library file */ require get_template_directory() . '/inc/kirki/kirki.php'; /** * Configuration for Kirki Framework */ function techup_kirki_configuration() { return array( 'url_path' => get_template_directory_uri() . '/inc/kirki/', ); } add_filter( 'kirki/config', 'techup_kirki_configuration' ); /** * techup Kirki Config */ Kirki::add_config( 'techup_config', array( 'capability' => 'edit_theme_options', 'option_type' => 'theme_mod', ) ); /** * Add Kirki required file for custom fields */ require get_template_directory() . '/inc/customizer/cv-customizer-panels.php'; require get_template_directory() . '/inc/customizer/cv-customizer-sections.php'; require get_template_directory() . '/inc/customizer/cv-customizer-general-panel-options.php'; require get_template_directory() . '/inc/customizer/cv-customizer-frontpage-panel-options.php';