-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsingle.php
More file actions
39 lines (23 loc) · 972 Bytes
/
single.php
File metadata and controls
39 lines (23 loc) · 972 Bytes
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
<?php get_header(); ?>
<div class="main-content">
<?php while ( have_posts() ): the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('entry-wrap'); ?>>
<div class="entry themeform">
<?php the_content(); ?>
<?php wp_link_pages(array('before'=>'<div class="post-pages">'.esc_html__('Pages:','timelines'),'after'=>'</div>')); ?>
<div class="clear"></div>
</div>
</article>
<div class="entry-footer group">
<?php the_tags('<p class="post-tags"><span>'.esc_html__('Tags:','timelines').'</span> ','','</p>'); ?>
<div class="clear"></div>
<?php do_action( 'alx_ext_sharrre_footer' ); ?>
<?php if ( get_theme_mod( 'post-nav', 'sidebar' ) == 'content' ) { get_template_part('inc/post-nav'); } ?>
<div class="themeform">
<?php comments_template(); ?>
</div>
</div><!--/.entry-footer-->
<?php endwhile; ?>
</div><!--/.main-content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>