Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generatepress/e125229c3884b769c25b5546d8dd735e to your computer and use it in GitHub Desktop.
Save generatepress/e125229c3884b769c25b5546d8dd735e to your computer and use it in GitHub Desktop.
Remove the GP Dashboard for non super admins
add_filter( 'generate_dashboard_page_capability', 'tu_super_admin_dashboard' );
function tu_super_admin_dashboard() {
return 'manage_sites';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment