content-search.php 902 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Template part for displaying results in search pages.
  4. *
  5. * @link https://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package Rebalance
  8. */
  9. ?>
  10. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  11. <?php if ( rebalance_has_post_thumbnail() ) { ?>
  12. <div class="entry-image-section">
  13. <a href="<?php the_permalink() ?>" class="entry-image-link">
  14. <figure class="entry-image">
  15. <?php the_post_thumbnail( 'rebalance-archive' ); ?>
  16. </figure>
  17. </a>
  18. </div>
  19. <?php } ?>
  20. <header class="entry-header">
  21. <?php the_title( sprintf( '<h1 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>
  22. <div class="entry-meta">
  23. <?php rebalance_entry_meta(); ?>
  24. </div><!-- .entry-meta -->
  25. </header><!-- .entry-header -->
  26. <div class="entry-content">
  27. <?php the_excerpt(); ?>
  28. </div><!-- .entry-content -->
  29. </article><!-- #post-## -->