Remove the Default Posts Menu — a practical guide to Remove the Default Posts Menu themes tutorial with clear examples you can reuse in real projects.
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' );
}