dragunoff

wpquestions.com, ID = 3611

Dec 27th, 2011
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.24 KB | None | 0 0
  1. <?php
  2.  
  3. // get all terms in the specified taxonomy
  4. $terms = get_terms( 'products-category' );
  5.  
  6. // loop the terms
  7. foreach ( $terms as $term ) :
  8.  
  9.     // query posts marked with the current term
  10.     $args = array(
  11.         'taxonomy' => 'products-category',
  12.         'term' => $term->slug
  13.     );
  14.    
  15.     query_posts($args);
  16.    
  17.     // loop posts
  18.     if ( have_posts() ) : ?>
  19.    
  20.     <div class="carousel custom_field_color <?php echo $term->slug; ?>">
  21.  
  22.         <div class="category_title">
  23.             <h1><?php echo $term->name; ?></h1>
  24.         </div>
  25.  
  26.         <ul class="clearfix jcarousel-skin-tango">
  27.        
  28.             <?php while ( have_posts() ) : the_post(); ?>
  29.            
  30.                 <li class="item">
  31.                     <div class="box">
  32.                         <?php
  33.                         if ( has_post_thumbnail() ) { ?>
  34.                             <a href="<?php the_permalink() ?>"><?php the_post_thumbnail('product-thumbnail'); ?></a>
  35.                         <?php } else { ?>
  36.                             <a href="<?php the_permalink() ?>"><img src="<?php bloginfo('template_directory') ;?>/i/post-no-img.png" alt=" "/></a>
  37.                         <?php } ?>
  38.                     </div>
  39.  
  40.                     <p class="title"><?php the_title() ?></p>
  41.  
  42.                     <div class="color">&nbsp;</div>
  43.  
  44.                     <div class="plus_bg"><a href="<?php the_permalink() ?>"></a></div>
  45.  
  46.                 </li>
  47.                
  48.             <?php endwhile; ?>
  49.            
  50.         </ul>
  51.  
  52.     </div>
  53.    
  54.     <?php endif;
  55.    
  56. endforeach;
  57.  
  58. ?>
Advertisement
Add Comment
Please, Sign In to add comment