-
Notifications
You must be signed in to change notification settings - Fork 2
/
single.php
76 lines (56 loc) · 2.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
<?php get_header(); ?>
<?php global $woo_options; ?>
<div id="content-wrap">
<div id="content" class="col-full">
<div class="col-left">
<?php if ( $woo_options[ 'woo_breadcrumbs_show' ] == 'true' ) { woo_breadcrumbs(); } ?>
<div id="main">
<?php if (have_posts()) { $count = 0; ?>
<?php while (have_posts()) { the_post(); $count++; ?>
<div <?php post_class('post'); ?>>
<h1 class="title"><?php the_title(); ?></h1>
<?php if ( $woo_options['woo_thumb_single'] == "true" && !woo_embed('')) woo_image('width='.$woo_options['woo_single_w'].'&height='.$woo_options['woo_single_h'].'&class=thumbnail '.$woo_options['woo_thumb_single_align']); ?>
<div class="entry">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'woothemes' ), 'after' => '</div>' ) ); ?>
</div>
<?php the_tags('<p class="tags">'.__('Tags: ', 'woothemes'), ', ', '</p>'); ?>
</div><!-- .post -->
<?php if ( $woo_options['woo_post_author'] == 'true' ) { ?>
<div id="post-author">
<div class="profile-image"><?php echo get_avatar( get_the_author_meta( 'ID' ), '70' ); ?></div>
<div class="profile-content">
<h3 class="title"><?php printf( esc_attr__( 'About %s', 'woothemes' ), get_the_author() ); ?></h3>
<?php the_author_meta( 'description' ); ?>
<div class="profile-link">
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">
<?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'woothemes' ), get_the_author() ); ?>
</a>
</div><!-- #profile-link -->
</div><!-- .post-entries -->
<div class="fix"></div>
</div><!-- #post-author -->
<?php } ?>
<?php woo_subscribe_connect(); ?>
<div id="post-entries">
<div class="nav-prev fl"><?php previous_post_link( '%link', '<span class="meta-nav">←</span> %title' ); ?></div>
<div class="nav-next fr"><?php next_post_link( '%link', '%title <span class="meta-nav">→</span>' ); ?></div>
<div class="fix"></div>
</div><!-- #post-entries -->
<?php $comm = $woo_options['woo_comments']; if ( ($comm == 'post' || $comm == 'both' ) ) { ?>
<?php comments_template( '', true ); ?>
<?php } ?>
<?php
}
} else {
?>
<div class="post">
<p><?php _e('Sorry, no posts matched your criteria.', 'woothemes') ?></p>
</div><!-- /.post -->
<?php } ?>
</div><!-- #main -->
</div><!-- /.col-left -->
<?php get_sidebar(); ?>
</div><!-- #content -->
</div><!-- /#content-wrap -->
<?php get_footer(); ?>