-
-
Save anteprimorac/7fadfaf0f677260c9719 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function slicejack_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'; | |
/** Start editing here **/ | |
} | |
add_action( 'customize_register', 'slicejack_customize_register' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment