返回介绍

set_user_setting()

发布于 2017-09-11 10:22:45 字数 2624 浏览 1100 评论 0 收藏 0

set_user_setting( string $name,  string $value )

Add or update user interface setting.


description

Both $name and $value can contain only ASCII letters, numbers and underscores.

This function has to be used before any output has started as it calls setcookie().


参数

$name

(string) (Required) The name of the setting.

$value

(string) (Required) The value for the setting.


返回值

(bool|null) True if set successfully, false if not. Null if the current user can't be established.


源代码

File: wp-includes/option.php

function set_user_setting( $name, $value ) {
	if ( headers_sent() ) {
		return false;
	}

	$all_user_settings = get_all_user_settings();
	$all_user_settings[$name] = $value;

	return wp_set_all_user_settings( $all_user_settings );
}

更新日志

Versiondescription
2.8.0Introduced.

相关函数

Uses

  • wp-includes/option.php: get_all_user_settings()
  • wp-includes/option.php: wp_set_all_user_settings()

Used By

  • wp-admin/includes/class-wp-ms-users-list-table.php: WP_MS_Users_List_Table::prepare_items()
  • wp-admin/includes/class-wp-ms-sites-list-table.php: WP_MS_Sites_List_Table::prepare_items()
  • wp-admin/includes/class-wp-posts-list-table.php: WP_Posts_List_Table::prepare_items()

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note Contributed by Drew Jaynes

    Override the user setting to always collapse the admin menu for the current user:

    
    /**
     * Re-set user setting to always collapse the admin menu.
     *
     * @see set_user_setting()
     */
    function wpdocs_always_collapse_menu() {
    	if ( 'f' != get_user_setting( 'mfold' ) ) {
    		set_user_setting( 'mfold', 'f' );
    	}
    }
    add_action( 'admin_head', 'wpdocs_always_collapse_menu' );
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文