Advertisement
Grawl

Untitled

Jan 27th, 2012
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. html: {
  2.     <?php
  3.         $b_slide = -1;
  4.         $fotorama_query = new WP_Query( 'category_name=novetly' );
  5.         if ( $fotorama_query->have_posts() ) {
  6.             while ( $fotorama_query->have_posts() ) {
  7.                 $fotorama_query->the_post();
  8.                 $b_slide = $b_slide + 1;
  9.                 echo $b_slide;
  10.                 echo ':"<div class=b-slide><a href=';
  11.                     the_permalink();
  12.                 echo '>';
  13.                     the_title();
  14.                 echo '</a></div>",';
  15.             }
  16.         }
  17.         wp_reset_postdata();
  18.     ?>
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement