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.
Looking for a skilled WordPress/WooCommerce developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!
Recent Posts
- Automating Code Linting with GitHub Actions for WordPress Plugins
- Comprehensive Guide to Linting PHP, JavaScript, and CSS in WordPress Plugins Using Composer
- The Ultimate Guide to Indexing in Database Design
- Understanding 'update_meta_cache' in WordPress - When to Use It, When Not to, and Its Impact on Database Queries
- A Guide to Configuring JavaScript and SCSS Paths in WordPress Plugins with @wordpress/scripts
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.