如何禁止用户更改其显示名称?

时间:2014-08-21 作者:uncovery

我应该如何防止用户更改其display\\u名称?

1 个回复
最合适的回答,由SO网友:Abhik 整理而成

可以使用jQuery禁用显示名称选择。

function disable_display_name() {
    global $pagenow;
    if ( $pagenow == \'profile.php\' ) {
    ?>
        <script>
            jQuery( document ).ready(function() {
                jQuery(\'#display_name\').prop(\'disabled\', \'disabled\');
            });
        </script>
    <?php
    }
}
add_action( \'admin_head\', \'disable_display_name\', 15 );

结束

相关推荐

MANAGE_USERS_CUSTOM_COLUMN筛选器触发的函数不起作用

我正在尝试添加一个自定义列un users。php,但它保持为空。我已经成功地在用户管理页面中添加了一列,在我的主题函数中使用了此代码。php文件:function add_user_test_column( $columns ) { $columns[\'test1\'] = \'Test\'; return $columns; } add_filter( \'manage_users_columns\', \'add_user_test_column\