Docs: In `update_option()`, remove an inaccurate statement about the `$autoload` value for new options.

If the option does not exist, it will be created with whatever was passed to the `$autoload` parameter, `'yes'` being only the default value.

Props leogermani.
Fixes #48357.

git-svn-id: https://develop.svn.wordpress.org/trunk@47373 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-02-25 20:06:32 +00:00
parent 38e9142a66
commit 91878831dd
1 changed files with 1 additions and 2 deletions

View File

@ -283,8 +283,7 @@ function wp_load_core_site_options( $network_id = null ) {
* then it will be serialized before it is inserted into the database.
* Remember, resources cannot be serialized or added as an option.
*
* If the option does not exist, then the option will be added with the option value,
* with an `$autoload` value of 'yes'.
* If the option does not exist, it will be created.
* This function is designed to work with or without a logged-in user. In terms of security,
* plugin developers should check the current user's capabilities before updating any options.