Skip to content

Instantly share code, notes, and snippets.

@eddiemoya
Created July 2, 2012 23:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eddiemoya/3036273 to your computer and use it in GitHub Desktop.
Save eddiemoya/3036273 to your computer and use it in GitHub Desktop.
Return Template Part - WordPress
function return_template_part($template, $specialized_name = ''){
ob_start();
get_template_part($template, $specialized_name);
return ob_get_clean();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment