我已經創建了WordPress的新角色,我希望與這個角色,用戶可以登錄到WordPress管理。如何讓新創建的角色登錄WordPress的管理員?
$result = add_role('sub_admin', __(
'Sub Admin'),
array(
'read' => true, // true allows this capability
'edit_posts' => true, // Allows user to edit their own posts
'create_posts' => true, // Allows user to create new posts
'publish_posts' => true, // Allows the user to publish, otherwise posts stays in draft mode
'install_plugins' => false, // User cant add new plugins
'update_plugin' => false, // User can’t update any plugins
'update_core' => false // user cant perform core updates
)
);
這是我添加的代碼添加新role..Can任何一個建議我該如何解決?
它給我看這個, 您沒有足夠的權限訪問此頁面。 當我試圖登錄與具有「sub_admin」角色的用戶。 –
您試圖在wp-admin中訪問哪個頁面? –