Advertisement
alchymyth

query thumbs only posts

Jul 1st, 2011
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <ul>
  2.     <?php $args = array(
  3.     'cat' => 43,-5,
  4.     'posts_per_page' => 4,
  5.     'meta_query' => array(
  6.         array(
  7.             'key' => '_thumbnail_id',
  8.         )
  9.     )
  10.  );
  11. query_posts( $args ); ?>
  12.             <?php while (have_posts()) : the_post(); ?>
  13.                 <li id="<?php the_ID(); ?>" class="pic">
  14.                     <a href="<?php the_permalink(); ?>">
  15.                         <?php echo the_post_thumbnail('thumbnail'); ?>
  16.                     </a>
  17.                 </li>
  18.             <?php endwhile; ?>
  19. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement