-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontent-status.php
29 lines (29 loc) · 983 Bytes
/
content-status.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
<?php
/**
* Default template for displaying Status post format
* @package sampression framework v 1.0
* @theme naya 1.0
*/
if ( ! defined( 'ABSPATH' ) ) exit( 'restricted access' );
?>
<article id="post-<?php the_ID(); ?>" <?php post_class( sampression_post_class() ); ?> itemscope="itemscope" itemtype="http://schema.org/Article" role="article">
<header class="entry-header clearfix">
<?php sampression_the_title() ?>
</header>
<div class="entry-meta">
<i class="icon-smiley"></i>
<?php sampression_post_meta(); ?>
</div>
<div class="entry-content" itemprop="articleBody">
<?php
sampression_post_thumbnail();
the_content();
wp_link_pages( array(
'before' => '<div class="page-links">',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
) );
?>
</div>
</article>