How can I have a section with the post of a particular custom post type?
I show all post type in home with this:
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;
}
but after this I can't filter "Video"
THANKS