Skip to content

Instantly share code, notes, and snippets.

@dipakcg
Last active May 22, 2017 05:36
Show Gist options
  • Select an option

  • Save dipakcg/bb8da3e2dd06af66d0961bf323889d1e to your computer and use it in GitHub Desktop.

Select an option

Save dipakcg/bb8da3e2dd06af66d0961bf323889d1e to your computer and use it in GitHub Desktop.
Customise WordPress Dashboard for Clients
function dcg_customise_dashboard() {
// remove_menu_page( 'index.php' ); //Dashboard
// remove_menu_page( 'jetpack' ); //Jetpack*
// remove_menu_page( 'edit.php' ); //Posts
// remove_menu_page( 'upload.php' ); //Media
// remove_menu_page( 'edit.php?post_type=page' ); //Pages
// remove_menu_page( 'edit-comments.php' ); //Comments
// remove_menu_page( 'themes.php' ); //Appearance
// remove_menu_page( 'plugins.php' ); //Plugins
// remove_menu_page( 'users.php' ); //Users
// remove_menu_page( 'tools.php' ); //Tools
// remove_menu_page( 'options-general.php' ); //Settings
}
add_action( 'admin_menu', 'dcg_customise_dashboard' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment