Hello, I successfully created a custom post type (called Video), now I want these new posts to appear both togheter with all other posts (in home, search etc) and to appear in a dedicated page/listing (with pagination like other posts). I added this code to functions.php to make it possible, but I can't filter through ?post_type=Video (I see all posts)
Some suggestion? Thanks
add_filter( 'pre_get_posts', 'my_get_posts' );
function my_get_posts( $query ) {
if (!is_admin())
{
$query->set( 'post_type', array( 'post', 'Video', 'attachment', 'page' ));
}
return $query;
}