delete_site_option()
Removes an option by name for the current network.
No Hooks.
Return
true|false
. True if the option was deleted, false otherwise.
Usage
delete_site_option( $option );
- $option(string) (required)
- Name of the option to delete. Expected to not be SQL-escaped.
Notes
Changelog
Since 2.8.0 | Introduced. |
Since 4.4.0 | Modified into wrapper for delete_network_option() |
delete_site_option() delete site option code WP 6.6.2
function delete_site_option( $option ) { return delete_network_option( null, $option ); }