CCDzine
5/7/2015 - 9:03 AM

Include Custom Post Type Posts in Index Loop

Include Custom Post Type Posts in Index Loop

<?php

function ccd_get_cpt_posts( $query ) {
  
	if ( is_home() && $query->is_main_query() ) {
		$query->set( 'post_type', array( 'post', 'custom_post_type' ) );
	}
	
	return $query;
}
add_filter( 'pre_get_posts', 'ccd_get_cpt_posts' );

?>

Include Custom Post Type Posts in Index Loop

WordPress Snippet