I'd like to expand on
this by pulling one random testimonial and have it appear in specific page bodies (not widgets). I
My testimonials are individual blog posts with custom fields pulled to one review page. I was hoping this code would work:
Code:
<ul>
<?php query_posts('category_name=Testimonials&showposts=1&offset=0&orderby=rand'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; endif; ?>
</ul>
But it doesn't. I also tried replacing category name with category id=36 . No good.
Any suggestions?