Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <?php query_posts( array('post__not_in' => array(46,2401), 'cat' => $category_id,'posts_per_page'=>'-1')); ?>
  2. <?php while ( have_posts() ) : the_post();
  3. echo '<li';
  4. if (($ID = get_the_ID()) == $pagepostid) echo ' class="proadv-current-item"';
  5. //else echo ' class="post-id'.$ID.'-id'.$pagepostid.'"';
  6. echo '>';
  7. echo '<div class="sponsor-thumb">';
  8. echo '<a href="'.get_permalink().'">';
  9. the_post_thumbnail( 'category-thumb' );
  10. echo '</a>';
  11. echo '</div>';
  12. echo '<a href="'.get_permalink().'">';
  13. the_title();
  14. echo '</a>';
  15. echo '</li>';
  16. endwhile; ?>
  17.  
  18. <?php wp_reset_query(); ?>
  19.  
  20. query_posts( array('post__not_in' => array(46,2401), 'cat' => $category_id,'posts_per_page'=>'-1','orderby'=>'name','order'=>'ASC'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement