Custom post types are a powerful way to extend the functionality of your website, creating a more personal experience for the viewer, and also the admin. But when you create a new custom post type, it is not automatically added to the site’s main loop. If that custom post type is one you plan to feature on the homepage of you’ll need to modify your theme’s functions.php file.
Luckily, that’s done with just a few lines of code.
Adding Custom Post Type to your Home Page in WordPress
function custom_conference_in_home_loop( $query ) {
if ( is_home() && $query->is_main_query() )









