Advertisement
Guest User

Untitled

a guest
Mar 11th, 2013
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <div id="sidebar">
  2.  
  3. <?php
  4. $args = array(
  5. 'category_name' => 'portfolio',
  6. 'post_type' => 'post',
  7. 'posts_per_page' => 3,
  8. 'orderby' => 'rand'
  9. //'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1),
  10. );
  11. query_posts($args);
  12. while (have_posts()) : the_post(); ?>
  13.  
  14. <div class="side_box">
  15. <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('featured-side'); ?></a>
  16. <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
  17. </div><!--//side_box-->
  18.  
  19. <?php endwhile; ?>
  20. <?php wp_reset_query(); ?>
  21.  
  22.  
  23. </div><!--//sidebar-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement