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.

發表回覆

您的郵箱地址不會被公開。 必填項已用 * 標註