This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/template-parts/content-search.php

36 lines
864 B
PHP
Raw Normal View History

<?php
/**
2016-09-27 06:15:28 +00:00
* Template part for displaying results in search pages
*
2017-10-29 08:51:29 +00:00
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package _s
*/
2015-05-27 17:49:01 +00:00
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<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">
2017-10-29 15:31:22 +00:00
<?php
2017-10-29 21:30:50 +00:00
_s_posted_on();
_s_posted_by();
2017-10-29 15:31:22 +00:00
?>
</div><!-- .entry-meta -->
<?php endif; ?>
</header><!-- .entry-header -->
<?php _s_post_thumbnail(); ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<footer class="entry-footer">
<?php _s_entry_footer(); ?>
</footer><!-- .entry-footer -->
2017-05-10 08:41:46 +00:00
</article><!-- #post-<?php the_ID(); ?> -->