Guest User

Untitled

a guest
Jan 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php $quotes = new WP_Query('post_type=quotes&posts_per_page=1&orderby=rand' );
  2. if($quotes->have_posts()) : while($quotes->have_posts()) : $quotes->the_post(); ?>
  3. <blockquote><?php the_content(); ?>
  4. <p class="attribution">—<?php the_title(); ?></p>
  5. </blockquote>
  6. <?php endwhile; endif; ?>
Add Comment
Please, Sign In to add comment