content-search.php 771 B

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