31 lines
758 B
PHP
31 lines
758 B
PHP
<?php
|
|
/**
|
|
* Template part for displaying post archives and search results
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
*
|
|
* @package WowPress
|
|
*/
|
|
|
|
?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<header class="entry-header">
|
|
<?php
|
|
if ( is_sticky() && is_home() && ! is_paged() ) {
|
|
printf( '%s', esc_html_x( 'Featured', 'post', 'wowpress' ) );
|
|
}
|
|
the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
|
|
?>
|
|
</header><!-- .entry-header -->
|
|
|
|
<?php wowpress_post_thumbnail(); ?>
|
|
|
|
<div <?php wowpress_content_class( 'entry-content' ); ?>>
|
|
<?php the_excerpt(); ?>
|
|
</div><!-- .entry-content -->
|
|
|
|
|
|
</article><!-- #post-${ID} -->
|