forked from Facens/wpbootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
106 lines (83 loc) · 3.63 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
<?php
/**
* The Template for displaying all single posts.
*
* @package WordPress
* @subpackage wpbootstrap
* @since wpbootstrap 0.1
*/
get_header(); ?>
<section class="row" itemprop="blogPosts">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<article class="span9 columns" itemscope itemtype="http://schema.org/BlogPosting">
<header>
<h1 class="page-header" itemprop="name">
<?php the_title(); ?>
</h1>
<p class="muted">
<?php twentyten_posted_on(); ?>
</p>
<hr />
</header>
<section class="post_content" itemprop="articleBody">
<?php the_content(); ?>
<?php wpbootstrap_link_pages_list(array( 'before' => '<nav class="pagination pagination-centered"><ul>', 'after' => '</ul></nav>')); ?>
</section>
<footer>
<p class="muted">
<?php twentyten_posted_on(); ?>
|
<?php if ( count( get_the_category() ) ) : ?>
<?php printf( __( 'Posted in %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
<?php endif; ?>
<?php
$tags_list = get_the_tag_list( '', ', ' );
if ( $tags_list ):
?>
|
<?php printf( __( 'Tagged %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
<?php endif; ?>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '| ', '' ); ?>
</p>
<hr />
<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?>
<div class="author_box box clearfix">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 80 ) ); ?>
<h2><?php printf( esc_attr__( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
<p><?php the_author_meta( 'description' ); ?></p>
</div>
<?php endif; ?>
</footer>
<?php
global $sa_options;
$sa_settings = get_option( 'sa_options', $sa_options );
if( $sa_settings['social_buttons'] == '1' ) :
?>
<div class="well clearfix">
<div class="box_count">
<iframe src="http://www.facebook.com/plugins/like.php?app_id=146466722109827&href=<?php the_permalink(); ?>&send=false&layout=box_count&width=90&show_faces=true&action=like&colorscheme=light&font&height=62" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:90px; height:62px;" allowTransparency="true"></iframe>
</div>
<div class="box_count">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="<?php the_permalink(); ?>" data-count="vertical">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<div class="box_count">
<g:plusone size="tall" href="<?php the_permalink(); ?>"></g:plusone>
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</div>
</div> <!-- /well -->
<?php endif; ?>
<?php comments_template( '', true ); ?>
</article>
<?php endwhile; // end of the loop. ?>
<aside class="span3 columns">
<?php get_sidebar(); ?>
</aside>
</section>
<?php get_footer(); ?>