wp_unregister_GLOBALS()WP 2.1.0

Deprecated from version 5.5.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Turn register globals off.

Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.

No Hooks.

Return

null. Nothing (null).

Usage

wp_unregister_GLOBALS();

Changelog

Since 2.1.0 Introduced.
Deprecated since 5.5.0

wp_unregister_GLOBALS() code WP 6.5.2

function wp_unregister_GLOBALS() {
	// register_globals was deprecated in PHP 5.3 and removed entirely in PHP 5.4.
	_deprecated_function( __FUNCTION__, '5.5.0' );
}