-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontent-quote.php
29 lines (29 loc) · 979 Bytes
/
content-quote.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 Quote 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() ); ?> itemtype="http://schema.org/Article" itemscope="itemscope" role="article">
<header class="entry-header">
<?php sampression_the_title() ?>
</header>
<div class="entry-meta">
<i class="icon-quotes-left"></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>