delete_site_option

函数
delete_site_option ( $option )
参数
  • (string) $option Name of the option to delete. Expected to not be SQL-escaped.
    Required:
返回值
  • (bool) True if the option was deleted, false otherwise.
相关
  • delete_network_option()
定义位置
相关方法
delete_user_optionget_site_optiondelete_optionupdate_site_optionadd_site_option
引入
2.8.0
弃用
-

delete_site_option: 这个函数删除了一个特定站点的选项。选项名称必须作为一个参数指定,同时还有一个可选的站点ID。

按名称删除当前网络的一个选项。

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

常见问题

FAQs
查看更多 >