Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.00 KB | None | 0 0
  1. <div <?php post_class(); ?>>
  2.     <div class="teaser">       
  3.         <a href="' . esc_url( get_permalink()) . '" rel="bookmark"><?php the_post_thumbnail('featured-teaser'); ?></a>
  4.         <div class="teaser-text">
  5.             <?php
  6.             $comment_count = get_comment_count($post->ID);
  7.             if ($comment_count['approved'] > 0) :
  8.             ?>
  9.             <span class="teaser-comment-total"><?php comments_number('0', '1', '% '); ?></span>        
  10.             <?php endif; ?>        
  11.             <?php if (is_sticky()) : ?>
  12.                 <?php the_title('<h3 class="teaser-title"><span>&bigstar;</span><a href="' . esc_url( get_permalink()) . '" rel="bookmark">', '</a></h3>'); ?>
  13.             <?php else: ?>
  14.                 <?php the_title('<h3 class="teaser-title"><a href="' . esc_url( get_permalink()) . '" rel="bookmark">', '</a></h3>'); ?>
  15.             <?php endif; ?>
  16.             <?php the_excerpt(); ?>
  17.         </div>
  18.         <div class="teaser-footer">
  19.             <p><?php echo get_avatar(get_the_author_meta('ID'), 20); ?> <span><?php the_author(); ?> &bull; <?php the_time(get_option('date_format')); ?></span></p>           
  20.         </div>
  21.     </div>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement