Skip to content

Instantly share code, notes, and snippets.

@jptksc
Created October 7, 2014 16:55
Show Gist options
  • Save jptksc/95be1a6cfa09df7d1cfd to your computer and use it in GitHub Desktop.
Save jptksc/95be1a6cfa09df7d1cfd to your computer and use it in GitHub Desktop.

Revisions

  1. jptksc created this gist Oct 7, 2014.
    13 changes: 13 additions & 0 deletions clean_wp_admin
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,13 @@
    // Clean the admin.
    function pk_clean_admin () {
    remove_menu_page('edit.php');
    remove_menu_page('upload.php');
    remove_menu_page('edit.php?post_type=page');
    remove_menu_page('edit-comments.php');
    remove_menu_page('options-general.php');
    remove_menu_page('tools.php');

    global $submenu;
    unset($submenu['themes.php'][6]);
    }
    add_action('admin_menu', 'pk_clean_admin');