salmancreation

post query

Nov 12th, 2015
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php query_posts('category_name=Portfolio&order=ASC&orderby=date&posts_per_page=36'); ?>
  2.  
  3. <?php if (have_posts()) : ?>
  4. <?php while (have_posts()) : the_post(); ?>
  5.  
  6. <?php
  7. $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'thumbnail' );
  8. $url = $thumb['0'];
  9. ?>
  10. <li><a style="background-image:url(<?=$url?>);" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"></a></li>
  11.  
  12. <?php endwhile; ?>
  13. <?php endif; ?>
Add Comment
Please, Sign In to add comment