Sarathlal N

Display Custom Post type posts in WordPress default blog pages

In default, WordPress display post post type in blog page. Consider that we have few custom post type like album, movie, quote etc and we want to display them in our blog page!

To get so, we want to add a small code snippet in our theme’s / child theme’s function.php file.

add_filter( 'pre_get_posts', 'custom_get_posts' );

function custom_get_posts( $query ) {

 if ( is_home() && $query->is_main_query() )
 $query->set( 'post_type', array( 'post', 'album', 'movie', 'quote' ) );

 return $query;
}

With this code snippet, now we are modifying query for blog posts with other custom post types.

If we like to display this post types in our feed also, we want to update the if statement in the above code snippet.

if ( ( is_home() && $query->is_main_query() ) || is_feed() )

Now we have our custom post type posts in blog index page with other blog posts. This will extreemly usefull in WordPress coustomizations for Magazine and blogs.

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.