Advertisement
Guest User

PHP Code

a guest
Mar 21st, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.57 KB | None | 0 0
  1. <?php
  2.             $featured_posts = new WP_Query(array(
  3.                 'showposts' => get_option('pyre_featured_posts'),
  4.                
  5.                                 'orderby' => 'post_date',
  6.             ));
  7.             ?>
  8.             <div id="featured-wrapper">
  9.            
  10.                 <div class="slider-item">
  11.                
  12.                     <?php while($featured_posts->have_posts()): $featured_posts->the_post(); ?>
  13. <?php $do_not_duplicate = $post->ID; ?>
  14.                     <?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'slider-image'); ?>
  15.                     <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><img src="<?php echo $image[0]; ?>" alt="<?php the_title(); ?>" title="#htmlcaption_<?php echo $post->ID; ?>"/></a>
  16.                     <?php endwhile; ?>
  17.                
  18.                 </div>
  19.  
  20.                                
  21.                
  22.                 <?php while($featured_posts->have_posts()): $featured_posts->the_post(); ?>
  23.                 <div id="htmlcaption_<?php echo $post->ID; ?>" class="slider-text nivo-html-caption">
  24.                 <span class="commentscap"><?php comments_popup_link('0', '1', '%'); ?></span>
  25.                    
  26.                     <div class="slider-heading">
  27.                    
  28.                         <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  29.                         <p><span class="categorynew"><?php the_category(', '); ?></span>
  30. <?php echo string_limit_words(get_the_excerpt(), 20); ?></p>
  31. <span class="categoryn">By <?php the_author_posts_link(); ?> </span>
  32.                         <span class="date">  on <?php the_time('F d, Y'); ?></span>
  33.                         <?php if(function_exists('kc_add_social_share')) kc_add_social_share(); ?>
  34.                     </div>
  35.                
  36.                 </div>
  37.                 <?php endwhile; ?>
  38.            
  39.             </div>
  40.             <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement