add_option


add_option ( $option, $value = '', $deprecated = '', $autoload = 'yes' )

Parameters:
  • (string) option Name of the option to add. Expected to not be SQL-escaped.
  • (mixed) value Optional. Option value. Must be serializable if non-scalar. Expected to not be SQL-escaped.
  • (string) deprecated Optional. Description. Not used anymore.
  • (string|bool) autoload Optional. Whether to load the option when WordPress starts up. Accepts 'yes'|true to enable or 'no'|false to disable. Autoloading too many options can lead to performance problems, especially if the options are not frequently used. For options which are accessed across several places in the frontend, it is recommended to autoload them, by using 'yes'|true. For options which are accessed only on few specific URLs, it is recommended to not autoload them, by using 'no'|false. Default 'yes'.
Returns:
  • (bool) True if the option was added, false otherwise.
Defined at:

Description

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 ones which are protected.

Related Functions

add_site_option, add_blog_option, add_action, add_ping, add_options_page

Top Google Results

User discussions

wpseek mobile