WP_Customize_Manager::after_setup_theme
Callback to validate a theme once it is loaded
Method of the class: WP_Customize_Manager{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Customize_Manager = new WP_Customize_Manager(); $WP_Customize_Manager->after_setup_theme();
Changelog
| Since 3.4.0 | Introduced. |
WP_Customize_Manager::after_setup_theme() WP Customize Manager::after setup theme code WP 7.0
public function after_setup_theme() {
$doing_ajax_or_is_customized = ( $this->doing_ajax() || isset( $_POST['customized'] ) );
if ( ! $doing_ajax_or_is_customized && ! validate_current_theme() ) {
wp_redirect( 'themes.php?broken=true' );
exit;
}
}