wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



delete_site_option › WordPress Function

Seit2.8.0
Veraltetn/v
delete_site_option ( $option )
Parameter:
  • (string) $option Name of the option to delete. Expected to not be SQL-escaped.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (bool) True if the option was deleted, false otherwise.
Definiert in:
Codex:
Changelog:
  • 4.4.0

Removes an option by name for the current network.



Quellcode

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