Skip to content

Instantly share code, notes, and snippets.

@mattboon
Created April 24, 2012 15:22
Show Gist options
  • Save mattboon/2480565 to your computer and use it in GitHub Desktop.
Save mattboon/2480565 to your computer and use it in GitHub Desktop.
WordPress - Call an external template via shortcode
<?php
function shortcode_your_shortcode() {
ob_start();
include (TEMPLATEPATH . '/inc/your-template.php');
$output_string = ob_get_contents();
ob_end_clean();
return $output_string;
}
add_shortcode('SHORTCODE', 'shortcode_your_shortcode');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment