Displaying CPT on homepage (index.php)?
-
I’m wanting to display the CPT with the regular posts from WordPress. Whats the best way of making this happen?
I have added the following, but with no luck:
add_filter( 'pre_get_posts', 'my_get_posts' ); function my_get_posts( $query ) { if ( ( is_home() && $query->is_main_query() ) || is_feed() ) $query->set( 'post_type', array( 'post', 'events' ) ); return $query; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Displaying CPT on homepage (index.php)?’ is closed to new replies.