Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.96 KB | None | 0 0
  1. <!--SLIDER-->
  2.  <div id="sliderwrap">
  3.     <div class="slidercontent">
  4.             <div id="slider">
  5.                 <ul>
  6.                     <?php
  7.                     $slidecat = get_option('ep_slider_cat');
  8.                     $slidenum = get_option('ep_slider_count');
  9.                     ?>
  10.                     <?php $sliders = new WP_Query();
  11.                     $sliders->query('orderby=rand&posts_per_page='. $slidenum .'');
  12.                     while ($sliders->have_posts()) : $sliders->the_post(); ?>
  13.                     <li>
  14.                      <div class="content"><h2><a href="<?php the_permalink(); ?> rel="nofollow"> rel="nofollow"> rel="nofollow">"><?php the_title(); ?></a></h2><?php the_excerpt(); ?></br> Posted in <?php the_category(); ?></div>
  15.  
  16.  
  17.                 <?php the_post_thumbnail(); ?>
  18.                 <div class="sframe"></div>
  19.                     </li>
  20.                     <?php endwhile; ?>
  21.                 </ul>
  22.             </div>
  23.         </div>    
  24. </div>
  25. <div class="sl_control"></div>
  26. <!--SLIDER END-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement