-
Notifications
You must be signed in to change notification settings - Fork 2
/
content.php
executable file
·28 lines (28 loc) · 925 Bytes
/
content.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
<div <?php post_class(); ?>>
<?php ct_tracks_featured_image(); ?>
<div class="entry-meta">
<?php get_template_part( 'content/post-meta' ); ?>
</div>
<div class='entry-header'>
<h1 class='entry-title'><?php the_title(); ?></h1>
</div>
<div class="entry-container">
<div class="entry-content">
<article>
<?php ct_tracks_output_last_updated_date(); ?>
<?php the_content(); ?>
<?php wp_link_pages( array(
'before' => '<p class="singular-pagination">' . esc_html__( 'Pages:', 'tracks' ),
'after' => '</p>',
) ); ?>
</article>
</div>
<?php get_template_part( 'sidebar', 'after-post-content' ); ?>
<div class='entry-meta-bottom'>
<?php get_template_part( 'content/further-reading' ); ?>
<?php get_template_part( 'content/category-links' ); ?>
<?php get_template_part( 'content/tag-links' ); ?>
</div>
<?php get_template_part( 'content/author-meta' ); ?>
</div>
</div>