forked from okfn/wordpress-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
124 lines (104 loc) · 4.95 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php
get_header();
// get template options
global $options;
foreach ($options as $value) {
if (isset($value['id'], $value['std'])):
$option_value = get_option($value['id'], $value['std']);
if (isset($option_value)):
if (version_compare(PHP_VERSION, '7.0.0', '>=')) {
${$value['id']} = $option_value;
} else {
$$value['id'] = $option_value;
}
endif;
endif;
}
// set variables for layout
if ($okfn_narrow_blog == "true") {
$contentSpan = 'span6';
}
else {
$contentSpan = 'span8';
}
?>
<div class="row">
<div class="span8 box extend">
<div class="padder">
<div class="row">
<div id="content" class="<?php echo $contentSpan; ?>">
<div class="page" id="blog-single" role="main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post-content">
<h2 class="posttitle"><?php the_title(); ?></h2>
<?php if ($okfn_narrow_blog !== "true") : ?>
<div class="date">
<?php printf( __( '%1$s <span>in %2$s</span>', 'buddypress' ), get_the_date(), get_the_category_list( ', ' ) ); ?>
</div>
<?php endif; ?>
<div class="entry">
<?php the_content( __( 'Read the rest of this entry →', 'buddypress' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><p>' . __( 'Pages: ', 'buddypress' ), 'after' => '</p></div>', 'next_or_number' => 'number' ) ); ?>
</div>
<?php if ($okfn_narrow_blog !== "true") : ?>
<p class="post-utility"><?php edit_post_link( __( 'Edit this entry', 'buddypress' ) ); ?></p>
<?php endif; ?>
<p class="postmetadata"><?php the_tags( '<span class="tags">' . __( 'Tags: ', 'buddypress' ), ', ', '</span>' ); ?></p>
<div class="alignleft"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'buddypress' ) . '</span> %title' ); ?></div>
<div class="alignright"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'buddypress' ) . '</span>' ); ?></div>
</div>
</div>
<?php comments_template(); ?>
<?php endwhile; else: ?>
<p><?php _e( 'Sorry, no posts matched your criteria.', 'buddypress' ) ?></p>
<?php endif; ?>
</div>
</div><!-- #content -->
<?php if ($okfn_narrow_blog == "true") : ?>
<div class="span2">
<?php if ($okfn_large_avatars == "true") : ?>
<div class="author-box">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), '130' ); ?>
<h3><?php printf( _x( 'Written by %s', 'Post written by...', 'buddypress' ), get_the_author_posts_link() ); ?></h3>
<p><!--Replace this with buddypress field --><?php the_author_meta('user_description'); ?></p>
</div>
<?php else: ?>
<div class="author-box small">
<div class="avatar"><?php echo get_avatar( get_the_author_meta( 'user_email' ), '50' ); ?></div>
<h3><?php printf( _x( 'Written by <br /> %s', 'Post written by...', 'buddypress' ), get_the_author_posts_link() ); ?></h3>
<p><!--Replace this with buddypress field --><?php the_author_meta('user_description'); ?></p>
</div>
<?php endif; ?>
<div class="date">
<?php printf( __( '%1$s <span>in %2$s</span>', 'buddypress' ), get_the_date(), get_the_category_list( ', ' ) ); ?>
</div>
<span class="post-utility"><?php edit_post_link( __( 'Edit this entry', 'buddypress' ) ); ?></span>
</div>
<?php endif; ?>
<div style="clear:both;"></div>
</div>
</div>
</div>
<div id="sidebar" class="span4" role="complementary">
<?php if ($okfn_narrow_blog !== "true") : ?>
<div class="widget">
<?php if ($okfn_large_avatars == "true") : ?>
<div class="author-box">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), '240' ); ?>
<h3><?php printf( _x( 'Written by %s', 'Post written by...', 'buddypress' ), get_the_author_posts_link() ); ?></h3>
<p><!--Replace this with buddypress field --><?php the_author_meta('user_description'); ?></p>
</div>
<?php else: ?>
<div class="author-box small">
<div class="avatar"><?php echo get_avatar( get_the_author_meta( 'user_email' ), '50' ); ?></div>
<h3><?php printf( _x( 'Written by <br /> %s', 'Post written by...', 'buddypress' ), get_the_author_posts_link() ); ?></h3>
<p><!--Replace this with buddypress field --><?php the_author_meta('user_description'); ?></p>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
<?php get_sidebar() ?>
</div>
</div>
<?php get_footer() ?>