Exclude Custom post type from /blog page
Custom post type name is project. I need code in functions.php
This is working for search:
// Exclude custom post type from WP Search
add_action( 'init', 'update_my_custom_type', 99 );
function update_my_custom_type() {
global $wp_post_types;
if ( post_type_exists( 'project' ) ) {
// exclude from search results
$wp_post_types['project']-exclude_from_search = true;
}
}
I can not find a solution for /blog page.
Topic exclude blog-page custom-post-types Wordpress
Category Web