-
Notifications
You must be signed in to change notification settings - Fork 0
/
content-image.php
27 lines (24 loc) · 1.02 KB
/
content-image.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
* @package SemPress
* @since SemPress 1.0.0
*/
?>
<article <?php sempress_post_id(); ?> <?php post_class(); ?><?php sempress_semantics( 'post' ); ?>>
<?php get_template_part( 'entry', 'header' ); ?>
<?php if ( is_search() ) : // Only display Excerpts for Search ?>
<div class="entry-summary p-summary" itemprop="description">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<figure class="entry-media">
<?php sempress_the_post_thumbnail( '', '' ); ?>
<figcaption><?php echo get_post( get_post_thumbnail_id() )->post_excerpt; ?></figcaption>
</figure>
<div class="entry-content e-content" itemprop="description articleBody">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'sempress' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'sempress' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>
<?php get_template_part( 'entry', 'footer' ); ?>
</article><!-- #post-<?php the_ID(); ?> -->