Skip to content

Instantly share code, notes, and snippets.

@Inzman
Created December 10, 2018 06:24
Show Gist options
  • Save Inzman/bb76adca93fdc9b7cbfff04d1598c862 to your computer and use it in GitHub Desktop.
Save Inzman/bb76adca93fdc9b7cbfff04d1598c862 to your computer and use it in GitHub Desktop.
WordPress: save `get_template_part()` to variable
function load_template_part($template_name, $part_name=null) {
ob_start();
get_template_part($template_name, $part_name);
$var = ob_get_contents();
ob_end_clean();
return $var;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment