Skip to content

Instantly share code, notes, and snippets.

@lancewillett
Created March 28, 2013 05:12
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 lancewillett/5260846 to your computer and use it in GitHub Desktop.
Save lancewillett/5260846 to your computer and use it in GitHub Desktop.
function twentythirteen_compat_customizer() {
if ( version_compare( $GLOBALS['wp_version'], '3.6-alpha', '>=' ) )
return;
wp_redirect( '/wp-admin/themes.php' );
}
add_action( 'load-customize.php', 'twentythirteen_compat_customizer' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment