wp_set_option_autoload

函数
wp_set_option_autoload ( $option, $autoload )
参数
  • (string) $option Name of the option. Expected to not be SQL-escaped.
    Required:
  • (string|bool) $autoload Autoload value to control whether to load the option when WordPress starts up. Accepts 'yes'|true to enable or 'no'|false to disable.
    Required:
返回值
  • (bool) True if the autoload value was modified, false otherwise.
相关
  • wp_set_option_autoload_values()
定义位置
相关方法
wp_set_options_autoloadwp_set_option_autoload_valuesis_user_option_localwp_get_post_autosavewp_set_post_lock
引入
6.4.0
弃用
-

设置数据库中某个选项的自动加载值。这是 {@see} 的包装器,可用于同时设置多个选项的自动加载值。

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;
}

常见问题

FAQs
查看更多 >