wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



delete_site_option › WordPress Function

Da2.8.0
Deprecaton/a
delete_site_option ( $option )
Parametri:
  • (string) $option Name of the option to delete. Expected to not be SQL-escaped.
    Richiesto:
Vedi:
Ritorna:
  • (bool) True if the option was deleted, false otherwise.
Definito a:
Codex:
ChangeLog:
  • 4.4.0

Removes an option by name for the current network.



Sorgenti

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