WP_Customize_Manager::remove_preview_signature()publicWP 3.4.0

Deprecated from version 4.7.0. It is no longer supported and can 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.

Return

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() code WP 6.5.2

public function remove_preview_signature( $callback = null ) {
	_deprecated_function( __METHOD__, '4.7.0' );

	return $callback;
}