Skip to content

Instantly share code, notes, and snippets.

@blakemiller99
Last active November 23, 2022 13:52
Show Gist options
  • Save blakemiller99/1d5ebef51542cc4132fb36260104d87e to your computer and use it in GitHub Desktop.
Save blakemiller99/1d5ebef51542cc4132fb36260104d87e to your computer and use it in GitHub Desktop.
Remove Posts from WordPress
// ************* Remove default Posts type since no blog *************
// Remove side menu
add_action( 'admin_menu', 'remove_default_post_type' );
function remove_default_post_type() {
remove_menu_page( 'edit.php' );
}
// Remove +New post in top Admin Menu Bar
add_action( 'admin_bar_menu', 'remove_default_post_type_menu_bar', 999 );
function remove_default_post_type_menu_bar( $wp_admin_bar ) {
$wp_admin_bar->remove_node( 'new-post' );
}
// Remove Quick Draft Dashboard Widget
add_action( 'wp_dashboard_setup', 'remove_draft_widget', 999 );
function remove_draft_widget(){
remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );
}
// End remove post type
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment