wp_set_options_autoload

函数
wp_set_options_autoload ( $options, $autoload )
参数
  • (array) $options List of option names. Expected to not be SQL-escaped.
    Required:
  • (string|bool) $autoload Autoload value to control whether to load the options when WordPress starts up. Accepts 'yes'|true to enable or 'no'|false to disable.
    Required:
返回值
  • (array) Associative array of all provided $options as keys and boolean values for whether their autoload value was updated.
相关
  • wp_set_option_autoload_values()
定义位置
相关方法
wp_set_option_autoloadwp_set_option_autoload_valueswp_get_post_autosavewp_set_post_lockis_user_option_local
引入
6.4.0
弃用
-

设置数据库中多个选项的自动加载值。

这是 {@see} 的包装器,可用于同时为每个选项设置不同的自动加载值。

function wp_set_options_autoload( array $options, $autoload ) {
	return wp_set_option_autoload_values(
		array_fill_keys( $options, $autoload )
	);
}

常见问题

FAQs
查看更多 >