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' );
}