Custom post type listing ….
-
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; }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Custom post type listing ….’ is closed to new replies.