content-search.php 671 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Template part for displaying results in search pages.
  4. *
  5. * @link https://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package AltoFocus
  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. <?php get_template_part( 'components/post/content', 'meta' ); ?>
  15. <?php endif; ?>
  16. </header>
  17. <div class="entry-summary">
  18. <?php the_excerpt(); ?>
  19. </div>
  20. <?php get_template_part( 'components/post/content', 'footer' ); ?>
  21. </article>