delete_site_option( string $option ): bool

Removes an option by name for the current network.


Description

Top ↑

See also


Top ↑

Parameters

$option string Required
Name of the option to delete. Expected to not be SQL-escaped.

Top ↑

Return

bool True if the option was deleted, false otherwise.


Top ↑

Source

File: wp-includes/option.php. View all references

function delete_site_option( $option ) {
	return delete_network_option( null, $option );
}


Top ↑

Changelog

Changelog
Version Description
4.4.0 Modified into wrapper for delete_network_option()
2.8.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.