Updates the value of an option that was already added. 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. 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.
$option, $value, $autoload = null
Sortie :
@param string $option Name of the option to update. Expected to not be SQL-escaped. @param mixed $value Option value. Must be serializable if non-scalar. Expected to not be SQL-escaped. @param bool|null $autoload Optional. Whether to load the option when WordPress starts up. @return bool True if the value was updated, false otherwise.
// Utilisation de la fonction update_option
$result = update_option($option, $value, $autoload = null);
if ($result) {
// Votre logique ici
}
Chargement des actualités...