Advertisement
towfiqi

easyslider.php edited

Feb 16th, 2012
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1.     <?php $option =  get_option('scl_options'); ?>
  2.     <div id="slider">
  3.             <ul>
  4.             <?php $loop = new WP_Query( array( 'post_type' => 'slider', 'posts_per_page' => $option['scl_num_sld'] ) ); ?>
  5.             <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
  6.              <li>
  7.             <?php the_post_thumbnail(); ?>
  8.                 </li>
  9.  
  10.             <?php endwhile; ?>
  11.      
  12.             </ul>
  13.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement