-
Notifications
You must be signed in to change notification settings - Fork 0
/
content-link.php
26 lines (24 loc) · 1.03 KB
/
content-link.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
<?php
/**
* The template for displaying posts in the Link Post Format on index and archive pages
*
* Learn more: http://codex.wordpress.org/Post_Formats
*
* @package SemPress
* @since SemPress 1.0.0
*/
?>
<article <?php sempress_post_id(); ?> <?php post_class(); ?><?php sempress_semantics( 'post' ); ?>>
<?php if ( is_search() ) : // Only display Excerpts for search pages ?>
<div class="entry-summary p-summary entry-title p-name" itemprop="name description">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="p-summary p-name" itemprop="name headline description articleBody">
<?php sempress_the_post_thumbnail( '<p>', '</p>' ); ?>
<?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(); ?> -->