how to get a list of custom post type?
-
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
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘how to get a list of custom post type?’ is closed to new replies.