Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Yorlinq/3da11445b439fa08f24e04ea1b95df17 to your computer and use it in GitHub Desktop.
Save Yorlinq/3da11445b439fa08f24e04ea1b95df17 to your computer and use it in GitHub Desktop.
Remove 'Posts' menu item from admin menu - WordPress
// Remove 'Posts' menu item from admin menu
function yl_remove_posts_from_admin_menu(){
remove_menu_page( 'edit.php' );
}
add_action( 'admin_menu', 'yl_remove_posts_from_admin_menu' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment