Advertisement
KreativeMente

Sexy Code

Nov 5th, 2011
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.99 KB | None | 0 0
  1. <?
  2. get_header();
  3. ?>
  4. <div id="movie_section">
  5. <?
  6. $counter = 0;
  7. if( have_posts() ) : while( have_posts() ) : the_post();
  8.     if( $counter == 0 ):
  9. ?>
  10.     <ul class="movie_row">
  11.     <? endif;
  12.     $extraclasses = $counter == 0 ? 'movie_row_item first' : 'movie_row_item';
  13.     ?>
  14.    
  15.     <li id="post-<? the_ID(); ?>" <? post_class($extraclasses); ?>>
  16.         <?
  17.         $thumbid = get_post_meta( $post->ID, 'thumbnail_id', true );
  18.         //$headerid = get_post_meta( $post->ID, 'header_id', true );
  19.         //the_excerpt();
  20.         if( $thumbid ) :?>
  21.             <img src="<? echo wp_get_attachment_url( $thumbid, true ); ?>" alt="" />
  22.         <? endif; ?>
  23.        
  24.         <? if( $headerid ) :?>
  25.             <img src="<? echo wp_get_attachment_url( $headerid, true ); ?>" alt="" />
  26.         <? endif; ?>
  27.     </li> <!-- End Post -->
  28.     <? if( $counter == 0 ) : ?>
  29.     <?
  30.         endif;
  31.         if( $counter == 3 ){?>
  32.             </ul> <!-- End Movie Row -->
  33.             <?$counter = 0;
  34.         }
  35.         else{
  36.             $counter++;
  37.         }
  38.     ?>
  39. <?
  40. endwhile;
  41.  
  42. endif;?>
  43. </div> <!-- End Movie Section -->
  44. <?
  45. get_footer();
  46. ?>
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement