我无法登录wp-admin"您没有足够的权限"所以我把这段代码添加到我的主题functions.php
/*
* Add your own functions here. You can also copy some of the theme functions into this file.
* Wordpress will use those functions instead of the original functions then.
*/
function codelight_all_permissions( $allcaps, $cap, $args ) {
$allcaps[$cap[0]] = true;
return $allcaps;
}
add_filter( 'user_has_cap', 'codelight_all_permissions', 0, 3 );
然后我能够以网站管理员身份进入,我去了用户并注意到没有分配任何角色。在数据库中,我有10级和1:{s:13:"管理员&#34 ;; s:1:" 1&#34 ;;}已分配。
如果我创建新用户,则无法从下拉列表中为该用户选择角色。我只得到选项"没有这个网站的角色"。有谁知道如何解决这个问题?