Home / Disable Posts in Admin
Duplicate Snippet

Embed Snippet on Your Site

Disable Posts in Admin

Hide the Posts menu from the admin if you don't need the default Posts post type.

100+
Code Preview
php
<?php
add_action( 'admin_bar_menu', function ( $wp_admin_bar ) {
	$wp_admin_bar->remove_node( 'new-post' );
}, 100 );
add_action( 'admin_menu', function () {
	remove_menu_page( 'edit.php' );
} );

Comments

Add a Comment