in short, all I need is to make my wordpress do this

$var = get_template_part('loop', 'index'); 

but, get_template_part(); does not return html, it prints it. I need this html stored in $var - do you have any ideas how to do it?

link|improve this question
feedback

3 Answers

This isn't what get_template_part was for, get_template_part essentially behaves like PHP's require function. Justin Tadlock writes a lot more about this here and also talks about a Wordpress function that might be more useful to you - locate_template.

Alternatively, if you did want to hack this functionality using get_template_part, you could use template buffering:

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;
}
link|improve this answer
when i put this in my theme i only get bacon and not the file's contents.... : echo "bacon " . load_template_part('registration-form.php'); – helgatheviking May 6 '11 at 22:23
I'm not sure where Atomicus says that they want the literal unprocessed PHP, get_template_part acts as an include rather than a file-content-getter. – Simon Scarfe May 8 '11 at 15:54
1  
should comment back to say that you're right this totally works, i was feeding the wrong info to the function (adding .php). <facepalm> though i would set $part_name=NULL by default so you can just called load_template_part('content-aside') – helgatheviking May 9 '11 at 18:25
@helgatheviking - excellent point, edited as per your suggestion – Simon Scarfe May 11 '11 at 15:40
feedback

I'm not loving Output Buffering, though +1 for even thinking of that as an option!

I think Helga was on to something, but you need to still respect the child_themes and the theme path, so use locate_template() instead (also as Simon suggested).

This works nicely, and can even be used inside a filter or (in my case) shortcode function (I wanted my shortcode to output the content within a template-style file, to separate the display layer from the logic layer).

return file_get_contents(locate_template("template-file-name.php")); // don't forget the .php!
link|improve this answer
feedback

what about?

$file = file_get_contents(STYLESHEETPATH . '/template-part.php'); 
return $file;

i'm sure there is a better way, but that seems to work for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.