Skip to content

Instantly share code, notes, and snippets.

@tcmulder
Last active December 20, 2023 18:49
Show Gist options
  • Save tcmulder/29fcdc180758564329c2 to your computer and use it in GitHub Desktop.
Save tcmulder/29fcdc180758564329c2 to your computer and use it in GitHub Desktop.
Template Part Shortcode
<?php
//Usage: [include template='template' part='part']
function template_part_shortcode($atts) {
extract(shortcode_atts(array(
'template' => 'templates/parts/page',
'part' => null
), $atts));
ob_start();
get_template_part($template, $part);
return ob_get_clean();
}
add_shortcode('include', 'template_part_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment