Advertisement
Guest User

Untitled

a guest
May 10th, 2013
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.90 KB | None | 0 0
  1.     <?php
  2.     $items = new WP_Query(array(
  3.    'post_type' => 'portfolio',
  4.     'posts_per_page' => -1
  5.     ));
  6.    while ( $items->have_posts() ) :
  7.    $items->the_post();
  8.    $categories = get_the_category($post->ID);
  9.   ?>
  10.  
  11.     <?php
  12. $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array( 5600,1000 ), false, '' );
  13. ?>
  14.  
  15.  
  16.  
  17. <?php
  18. if ( in_category( 'print' )) { ?>
  19.  
  20.     <a href="#port-<? the_ID(); ?>" data-toggle="modal">
  21.     <div class="span2" id="square" style="background: url(<?php echo $src[0]; ?>); background-size:100%;  background-repeat:no-repeat; background-position:center;">
  22.     <span>
  23.       <h3>
  24.         <?php the_title();?>
  25.       </h3>
  26.     </span>
  27.    </div>
  28.     </a>
  29.    
  30. <?php } else { ?>
  31.  
  32.     <div class="span2" id="square" style="background:#000;">
  33.     <span>
  34.       <h3>
  35.         <?php the_title();?>
  36.       </h3>
  37.     </span>
  38.    </div>
  39.  
  40. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement