-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplate-blog.php
68 lines (51 loc) · 3.26 KB
/
template-blog.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
<?php
/*
Template Name: Blog
*/
?>
<?php get_header(); ?>
<?php global $woo_options; ?>
<!-- #content Starts -->
<?php woo_content_before(); ?>
<div id="content-wrap">
<div id="content" class="col-full">
<?php if ( $woo_options[ 'woo_breadcrumbs_show' ] == 'true' ) woo_breadcrumbs(); ?>
<!-- #main Starts -->
<div id="main" class="col-left">
<?php if ( get_query_var('paged') ) $paged = get_query_var('paged'); elseif ( get_query_var('page') ) $paged = get_query_var('page'); else $paged = 1; ?>
<?php query_posts("post_type=post&paged=$paged"); ?>
<?php if (have_posts()) : $count = 0; while (have_posts()) : the_post(); $count++; ?>
<!-- Post Starts -->
<div <?php post_class(); ?>>
<?php if ( $woo_options['woo_post_content'] != "content" ) woo_image('width='.$woo_options['woo_thumb_w'].'&height='.$woo_options['woo_thumb_h'].'&class=thumbnail '.$woo_options['woo_thumb_align']); ?>
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="post-meta">
<span class="post-date"><span class="small"><?php _e('Posted on', 'woothemes') ?></span> <?php the_time( get_option( 'date_format' ) ); ?></span>
<span class="post-author"><span class="small"><?php _e('by', 'woothemes') ?></span> <?php the_author_posts_link(); ?></span>
<span class="post-category"><span class="small"><?php _e('in', 'woothemes') ?></span> <?php the_category(', ') ?></span>
<?php edit_post_link( __('{ Edit }', 'woothemes'), '<span class="small">', '</span>' ); ?>
</p>
<div class="entry">
<?php global $more; $more = 0; ?>
<?php if ( $woo_options['woo_post_content'] == "content" ) the_content(__('Read More...', 'woothemes')); else the_excerpt(); ?>
</div>
<div class="fix"></div>
<div class="post-more">
<span class="comments"><?php comments_popup_link(__('Leave a comment', 'woothemes'), __('1 Comment', 'woothemes'), __('% Comments', 'woothemes')); ?></span>
<?php if ( $woo_options['woo_post_content'] == "excerpt" ) { ?>
<span class="post-more-sep">•</span>
<span class="read-more"><a href="<?php the_permalink() ?>" title="<?php _e('Continue Reading →','woothemes'); ?>"><?php _e('Continue Reading →','woothemes'); ?></a></span>
<?php } ?>
</div>
</div><!-- /.post -->
<?php endwhile; else: ?>
<div class="post">
<p><?php _e('Sorry, no posts matched your criteria.', 'woothemes') ?></p>
</div><!-- /.post -->
<?php endif; ?>
<?php woo_pagenav(); ?>
</div><!-- /#main -->
<?php get_sidebar(); ?>
</div><!-- /#content -->
</div><!-- /#content-wrap -->
<?php get_footer(); ?>