<?php

function home_post_section($atts) {
    ob_start();
    get_template_part('home_post_section');
    return ob_get_clean();
}
add_shortcode('home_post_section', 'home_post_section');






?>