-
Notifications
You must be signed in to change notification settings - Fork 1
/
content-link.php
38 lines (36 loc) · 1.35 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
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* The template for displaying posts in the Link post format
*
* @package Sitepoint Base
* @since Sitepoint Base 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php sitepointbase_posted_on(); ?>
</header> <!-- /.entry-header -->
<div class="entry-content">
<?php the_content( wp_kses( __( 'Continue reading <span class="meta-nav">→</span>', 'sitepoint-base' ), array(
'span' => array(
'class' => array() )
) ) ); ?>
<?php wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'sitepoint-base' ),
'after' => '</div>',
'link_before' => '<span class="page-numbers">',
'link_after' => '</span>'
) ); ?>
</div> <!-- /.entry-content -->
<footer class="entry-meta">
<?php if ( is_singular() ) {
// Only show the tags on the Single Post page
sitepointbase_entry_meta();
} ?>
<?php edit_post_link( esc_html__( 'Edit', 'sitepoint-base' ) . ' <i class="fa fa-angle-right" aria-hidden="true"></i>', '<div class="edit-link">', '</div>' ); ?>
<?php if ( is_singular() && get_the_author_meta( 'description' ) && is_multi_author() ) {
// If a user has filled out their description and this is a multi-author blog, show their bio
get_template_part( 'author-bio' );
} ?>
</footer> <!-- /.entry-meta -->
</article> <!-- /#post -->