forked from Codeinwp/FlatX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-single.php
48 lines (45 loc) · 1.75 KB
/
content-single.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
39
40
41
42
43
44
45
46
47
48
<?php
# Whether to show an author postbox or not
$author_postbox = false;
$single_author_box = flat_get_theme_option( 'single_author_box' );
if ( get_the_author_meta( 'description' ) && empty( $single_author_box ) ) {
$author_postbox = true;
}
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h1 class="entry-title" itemprop="name"><?php the_title(); ?></h1>
<?php $single_metadata = flat_get_theme_option( 'single_metadata' ); ?>
<?php if ( empty( $single_metadata ) ) : ?>
<div class="entry-meta"><?php flat_entry_meta( true, $author_postbox ); ?></div>
<?php endif; ?>
</header>
<?php $single_featured_image = flat_get_theme_option( 'single_featured_image' ); ?>
<?php if ( has_post_thumbnail() && ! post_password_required() && empty( $single_featured_image ) ) : ?>
<div class="entry-thumbnail"><?php the_post_thumbnail( 'post-thumbnail', array( 'itemprop' => 'thumbnailUrl' ) ); ?></div>
<?php endif; ?>
<?php flat_hook_entry_before(); ?>
<div class="entry-content" itemprop="articleBody">
<?php flat_hook_entry_top(); ?>
<?php the_content( __( 'Continue reading', 'flat' ) ); ?>
<?php
if ( function_exists( 'cwppos_show_review' ) ) :
echo cwppos_show_review();
endif;
?>
<?php wp_link_pages(
array(
'before' => '<div class="page-links" itemprop="pagination"><span class="page-links-title">' . __( 'Pages:', 'flat' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
)
); ?>
<?php flat_hook_entry_bottom(); ?>
</div>
<?php flat_hook_entry_after(); ?>
<?php the_tags( '<div class="tags-links">', __( ' ', 'flat' ), '</div>' ); ?>
</article>
<?php if ( $author_postbox ) : ?>
<?php get_template_part( 'author-bio' ); ?>
<?php endif; ?>