Remove the GP Dashboard for non super admins

Remove the GP Dashboard for non super admins

If you want to remove the GP Dashboard for non super admins, use the PHP below:

add_filter( 'generate_dashboard_page_capability', 'tu_super_admin_dashboard' );
function tu_super_admin_dashboard() {
return 'manage_sites';
}

The snippet can also be modify for other Roles and Capabilities as you prefer.

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注