WordPress函数文档add_blog_option()

向wp_option表添加选项记录(多站点) 描述 Add a new option for a given …

向wp_option表添加选项记录(多站点)

描述

Add a new option for a given blog id.

用法

<?php add_blog_option$id$option$value ?>

参数

$id

(integer) (必填) A blog ID. Can be null to refer to the current blog.

默认值: current blog ID

$option

(string) (必填) Name of option key to add. Expected to not be SQL-escaped.

默认值: None

$value

(mixed) (可选) Option value, can be anything. Expected to not be SQL-escaped.

默认值: None

注意

You do not need to serialize values. If the value needs to be serialized, then it will be serialized before it is inserted into the database. Remember, resources can not be serialized or added as an option.

You can create options without values and then update the values later. Existing options will not be updated and checks are performed to ensure that you aren’t adding a protected WordPress option. Care should be taken to not name options the same as the ones which are protected.

历史

添加于 版本: 3.0.0

  • 原文:http://codex.wordpress.org/Function_Reference/add_blog_option
类别:WordPress函数文档

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT