1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- * Template part for displaying results in search pages.
- *
- * @link https://codex.wordpress.org/Template_Hierarchy
- *
- * @package Toujours
- */
- ?>
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <?php if ( has_post_thumbnail() ) { ?>
- <div class="featured-image">
- <span>
- <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'toujours-featured' ); ?></a>
- </span>
- </div>
- <?php } ?>
- <header class="entry-header">
- <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
- <?php if ( 'post' === get_post_type() ) : ?>
- <div class="entry-meta">
- <?php
- toujours_posted_on();
- toujours_comment_link();
- ?>
- </div><!-- .entry-meta -->
- <?php endif; ?>
- </header><!-- .entry-header -->
- <div class="entry-content">
- <?php the_excerpt(); ?>
- </div><!-- .entry-content -->
- <footer class="entry-footer">
- <?php toujours_entry_footer(); ?>
- </footer><!-- .entry-footer -->
- </article><!-- #post-## -->
|