Sure! Here’s what I have in the template that I am embedding.
{exp:channel:entries channel="testimonials" limit="1" orderby="random" disable="categories|member_data|category_fields|pagination" dynamic="off"}
<div class="testimonial">
{testimonial}
<div class="author"><a href="http://{testimonial_author_url}">{testimonial_author}</a>
<a href="http://{testimonial_author_url}">{testimonial_author_url}</a>
</div>
<a href="http://{site_url}testimonials" class="see-more-testimonials">See More Testimonials >></a>
</div>
{/exp:channel:entries}
Right now, I actually have two different templates with the same code and I’m embedding them separately to avoid it repeating or at least reducing the chances of it repeating. So, I have my entry like this:
Paragraph of text.
{embed="testimonials/single"}
Paragraph of text.
{embed="testimonials/single-2"}
The above is working ok, but I thought it would be better to reduce it to one embed instead of two or more if possible to reduce the number of calls. If you guys/gals think this isn’t too bad though, I can just go with this.