首页 WordPress函数大全 add_option()

add_option()

2020-05-01 / 3675阅 / 悠然

如何你看完本文还不知道如何使用该函数,可以联系我定制视频教程,50元/个函数,学不会全额退款

add_option( string $option, mixed $value = '', string $deprecated = '', string|bool $autoload = 'yes' )

Adds a new option.

描述

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 cannot 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>

参数

$option

(string)
(Required)
Name of option to add. Expected to not be SQL-escaped.

$value

(mixed)
(Optional)
Option value. Must be serializable if non-scalar. Expected to not be SQL-escaped.

Default value: ''

$deprecated

(string)
(Optional)
Description. Not used anymore.

Default value: ''

$autoload

(string|bool)
(Optional)
Whether to load the option when WordPress starts up. Default is enabled. Accepts 'no' to disable for legacy reasons.

Default value: 'yes'

返回

(bool) False if option was not added and true if option was added.

大家谈论
    我的见解