This method has been deprecated.
WP_Customize_Manager::wp_die_handler()
Return the Ajax wp_die() handler if it’s a customized request.
Return
(callable) Die handler.
Source
File: wp-includes/class-wp-customize-manager.php
public function wp_die_handler() {
_deprecated_function( __METHOD__, 'WP-4.7.0' );
if ( $this->doing_ajax() || isset( $_POST['customized'] ) ) {
return '_ajax_wp_die_handler';
}
return '_default_wp_die_handler';
}
Changelog
Version | Description |
---|---|
WP-4.7.0 | This method has been deprecated. |
WP-3.4.0 | Introduced. This method has been deprecated. |