WP_Customize_Manager::remove_preview_signature
Deprecated since 4.7.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Removes the signature in case we experience a case where the Customizer was not properly executed.
Method of the class: WP_Customize_Manager{}
No Hooks.
Returns
callable|null. Value passed through for wp_die_handler filter.
Usage
$WP_Customize_Manager = new WP_Customize_Manager(); $WP_Customize_Manager->remove_preview_signature( $callback );
- $callback(callable|null)
- Value passed through for wp_die_handler filter.
Default:null
Changelog
| Since 3.4.0 | Introduced. |
| Deprecated since | 4.7.0 |
WP_Customize_Manager::remove_preview_signature() WP Customize Manager::remove preview signature code WP 7.0
public function remove_preview_signature( $callback = null ) {
_deprecated_function( __METHOD__, '4.7.0' );
return $callback;
}