forked from Codeinwp/flymag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
content-single.php
40 lines (34 loc) · 950 Bytes
/
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
<?php
/**
* The template part for displaying single posts
*
* @package FlyMag
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<div class="single-thumb">
<?php the_post_thumbnail( 'entry-thumb' ); ?>
</div>
<?php endif; ?>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
<?php if ( get_theme_mod( 'flymag_single_date' ) != 1 ) : ?>
<div class="entry-meta">
<?php flymag_posted_on(); ?>
</div><!-- .entry-meta -->
<?php endif; ?>
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'flymag' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php flymag_entry_footer(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->