Skip to content

Instantly share code, notes, and snippets.

@anteprimorac
Created October 2, 2014 13:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anteprimorac/7fadfaf0f677260c9719 to your computer and use it in GitHub Desktop.
Save anteprimorac/7fadfaf0f677260c9719 to your computer and use it in GitHub Desktop.
<?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