-
Notifications
You must be signed in to change notification settings - Fork 18
/
content-chat.php
34 lines (32 loc) · 1.06 KB
/
content-chat.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
<?php
/**
* The template for displaying posts in the Chat post format
*
* @package Quark
* @since Quark 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php quark_posted_on(); ?>
</header> <!-- /.entry-header -->
<div class="entry-content">
<?php the_content( wp_kses( __( 'Continue reading <span class="meta-nav">→</span>', 'quark' ), array(
'span' => array(
'class' => array() )
) ) ); ?>
<?php wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'quark' ),
'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
quark_entry_meta();
} ?>
<?php edit_post_link( esc_html__( 'Edit', 'quark' ) . ' <i class="fa fa-angle-right" aria-hidden="true"></i>', '<div class="edit-link">', '</div>' ); ?>
</footer> <!-- /.entry-meta -->
</article> <!-- /#post -->