Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rileypaulsen/6018741 to your computer and use it in GitHub Desktop.
Save rileypaulsen/6018741 to your computer and use it in GitHub Desktop.
use get_template_part() in a shortcode without outputting the html arbitrarily due to the behind the scenes 'require.'
add_shortcode('donation-posts', 'fnDonatePosts');
function fnDonatePosts($attr, $content)
{
ob_start();
get_template_part('donation', 'posts');
$ret = ob_get_contents();
ob_end_clean();
return $ret;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment