-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
90 lines (63 loc) · 2.45 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
// Exit if accessed directly
if( !defined( 'ABSPATH' ) ) {
exit;
}
/**
* Single Posts Template
*
*
* @file single.php
* @package Responsive
* @author Emil Uzelac
* @copyright 2003 - 2014 CyberChimps
* @license license.txt
* @version Release: 1.0
* @filesource wp-content/themes/responsive/single.php
* @link http://codex.wordpress.org/Theme_Development#Single_Post_.28single.php.29
* @since available since Release 1.0
*/
get_header(); ?>
<?php $extraClass = get_field('show_map') ? 'show-map' : ''; ?>
<div id="content" class="<?php echo esc_attr( implode( ' ', responsive_get_content_classes() ) ); ?>">
<?php get_template_part( 'loop-header' ); ?>
<?php if( have_posts() ) : ?>
<?php while( have_posts() ) : the_post(); ?>
<?php responsive_entry_before(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class($extraClass); ?>>
<?php responsive_entry_top(); ?>
<?php get_template_part( 'post-meta' ); ?>
<div class="post-entry">
<?php the_content( __( 'Read more ›', 'responsive' ) ); ?>
<?php if( get_the_author_meta( 'description' ) != '' ) : ?>
<div id="author-meta">
<?php if( function_exists( 'get_avatar' ) ) {
echo get_avatar( get_the_author_meta( 'email' ), '80' );
} ?>
<div class="about-author"><?php _e( 'About', 'responsive' ); ?> <?php the_author_posts_link(); ?></div>
<p><?php the_author_meta( 'description' ) ?></p>
</div><!-- end of #author-meta -->
<?php endif; // no description, no author's meta ?>
<?php wp_link_pages( array( 'before' => '<div class="pagination">' . __( 'Pages:', 'responsive' ), 'after' => '</div>' ) ); ?>
</div><!-- end of .post-entry -->
<div class="navigation">
<div class="previous"><?php previous_post_link( '‹ %link' ); ?></div>
<div class="next"><?php next_post_link( '%link ›' ); ?></div>
</div><!-- end of .navigation -->
<?php get_template_part( 'post-data' ); ?>
<?php responsive_entry_bottom(); ?>
</div><!-- end of #post-<?php the_ID(); ?> -->
<?php responsive_entry_after(); ?>
<?php responsive_comments_before(); ?>
<?php comments_template( '', true ); ?>
<?php responsive_comments_after(); ?>
<?php
endwhile;
get_template_part( 'loop-nav' );
else :
get_template_part( 'loop-no-posts' );
endif;
?>
</div><!-- end of #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>