3 results is what I wanted, and as for the last }. Doing that would just cause the whole thing to stop working.
Either way, I figured out the problem. I used
$blog_bits to create the template and register the variables, then I also used the same to store the render of the template. You can not do that. So I simply made
PHP Code:
$blog_bits .= $blog_bits->render();
into
$blog_bit .= $blog_bits->render();
It was a simple mistake on my part.
Thanks for your input though Boofo.