/ Published in: PHP
Expand |
Embed | Plain Text
<?php $custom_post = new WP_Query(); $custom_post->query('post_type=testimonial&showposts=1&orderby=rand'); ?> <?php while ($custom_post -> have_posts()) : $custom_post -> the_post(); ?> <div class="post_type"> <?php the_content();?> <span class="name right clear"> </span> </div> <?php endwhile; ?>
You need to login to post a comment.
