Theme Customizer: Fire WP_Customize->customize_preview_init on wp_loaded instead of template_redirect. props nacin, see #19910.

Certain customize settings (such as show_on_front and other static front page features) need to be overridden before template_redirect.

git-svn-id: http://svn.automattic.com/wordpress/trunk@20306 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
koopersmith 2012-03-28 15:04:11 +00:00
parent d744ca66f0
commit bffbb455b1
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ final class WP_Customize {
public function wp_loaded() {
do_action( 'customize_register' );
if ( $this->is_preview() )
add_action( 'template_redirect', array( $this, 'customize_preview_init' ) );
if ( $this->is_preview() && ! is_admin() )
$this->customize_preview_init();
}
/**