-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsingle.php
64 lines (47 loc) · 2.25 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php get_header(); ?>
<div class="content">
<div class="content-inner group">
<?php while ( have_posts() ): the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post-wrapper">
<?php do_action( 'alx_ext_sharrre' ); ?>
<header class="entry-header group">
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-meta">
<span class="entry-date"><?php the_time( get_option('date_format') ); ?></span>
<span class="entry-category"><?php the_category(' / '); ?></span>
</div>
</header>
<div class="entry-media">
<?php if( get_post_format() ) { get_template_part('inc/post-formats'); } ?>
</div>
<div class="entry-content">
<div class="entry themeform">
<?php the_content(); ?>
<?php wp_link_pages(array('before'=>'<div class="post-pages">'.esc_html__('Pages:','motioner'),'after'=>'</div>')); ?>
<div class="clear"></div>
</div><!--/.entry-->
</div>
<div class="entry-footer group">
<?php the_tags('<p class="post-tags"><span>'.esc_html__('Tags:','motioner').'</span> ','','</p>'); ?>
<div class="clear"></div>
<?php if ( ( get_theme_mod( 'author-bio', 'on' ) == 'on' ) && get_the_author_meta( 'description' ) ): ?>
<div class="author-bio">
<div class="bio-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></div>
<p class="bio-name"><?php the_author_meta('display_name'); ?></p>
<p class="bio-desc"><?php the_author_meta('description'); ?></p>
<div class="clear"></div>
</div>
<?php endif; ?>
<?php do_action( 'alx_ext_sharrre_footer' ); ?>
<?php if ( get_theme_mod( 'related-posts', 'categories' ) != 'disable' ) { get_template_part('inc/related-posts'); } ?>
<?php if ( get_theme_mod( 'post-nav', 'sidebar' ) == 'content' ) { get_template_part('inc/post-nav'); } ?>
<?php if ( comments_open() || get_comments_number() ) : comments_template( '/comments.php', true ); endif; ?>
</div>
</div>
</article><!--/.post-->
<?php endwhile; ?>
</div>
</div><!--/.content-->
<div id="move-sidebar-content"></div>
<?php get_footer(); ?>