themes

Remove the Default Posts Menu

Remove the default WordPress Posts menu from the admin dashboard when using only custom post types.

/*Default Post Remove*/
add_action( 'admin_menu', 'remove_default_post_type' );
function remove_default_post_type() {
    remove_menu_page( 'edit.php' );
}

Leave a reply

Your email address will not be published. Required fields are marked *