content-excerpt.php 635 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Template part for displaying abbreviated posts as excerpts.
  4. *
  5. * @package Pique
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <header class="entry-header">
  10. <?php the_title( sprintf( '<h3 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h3>' ); ?>
  11. <?php if ( 'post' === get_post_type() ) : ?>
  12. <div class="entry-meta">
  13. <?php pique_posted_on(); ?>
  14. </div><!-- .entry-meta -->
  15. <?php endif; ?>
  16. </header><!-- .entry-header -->
  17. <div class="entry-content">
  18. <?php the_excerpt(); ?>
  19. </div><!-- .entry-content -->
  20. </article><!-- #post-## -->