content-excerpt.php 730 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Template part for displaying results in search pages.
  4. *
  5. * @link https://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package Lodestar
  8. */
  9. ?>
  10. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  11. <header class="entry-header">
  12. <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
  13. <?php if ( 'post' === get_post_type() ) : ?>
  14. <div class="entry-meta">
  15. <?php lodestar_posted_on(); ?>
  16. </div><!-- .entry-meta -->
  17. <?php endif; ?>
  18. </header>
  19. <div class="entry-summary">
  20. <?php the_excerpt(); ?>
  21. </div>
  22. <footer class="entry-footer">
  23. <?php lodestar_edit_post_link(); ?>
  24. </footer><!-- .entry-footer -->
  25. </article>