Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1.                             <?php $ii=0; ?>
  2.                             <?php if (have_posts()) : ?>
  3.                             <?php query_posts('cat=5'); ?>
  4.                             <?php while (have_posts()) : the_post(); ?>    
  5.                             <?php if ($ii==0) {echo '<li><a href="#portfolio-'; echo get_post_meta($post->ID, 'link', true); echo '">'; } ?>
  6.                             <?php $ii++; ?>
  7.                             <?php if ($ii==2) {echo "</a></li>"; $ii=0; }  ?>
  8.                             <?php endwhile; ?>    
  9.                             <?php else : ?>    
  10.                             <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement