megwoo
11/16/2015 - 5:58 PM

get template part shortcode


// in functions.php
// get template part
function oe_team_shortcode( $attr ) {
    ob_start();
    get_template_part( 'team-part' );
    return ob_get_clean();
}
add_shortcode( 'team', 'oe_team_shortcode' );

// create file in directory called
team-part.php

// use shortcode
[team]