wp_set_option_autoload()WP 6.4.0

Sets the autoload value for an option in the database.

This is a wrapper for wp_set_option_autoload_values(), which can be used to set the autoload value for multiple options at once.

Хуков нет.

Возвращает

true|false. True if the autoload value was modified, false otherwise.

Использование

wp_set_option_autoload( $option, $autoload );
$option(строка) (обязательный)
Name of the option. Expected to not be SQL-escaped.
$autoload(строка|true|false) (обязательный)
Autoload value to control whether to load the option when WordPress starts up. Accepts 'yes'|true to enable or 'no'|false to disable.

Заметки

Список изменений

С версии 6.4.0 Введена.

Код wp_set_option_autoload() WP 6.6.2

function wp_set_option_autoload( $option, $autoload ) {
	$result = wp_set_option_autoload_values( array( $option => $autoload ) );
	if ( isset( $result[ $option ] ) ) {
		return $result[ $option ];
	}
	return false;
}