-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-blog.php
62 lines (46 loc) · 2.64 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
<?php
/*
Template Name: Blog
*/
?>
<?php get_header(); ?>
<?php global $woo_options; ?>
<!-- #content Starts -->
<?php woo_content_before(); ?>
<div id="content" class="col-full">
<!-- #main Starts -->
<div id="main" class="col-left">
<?php if ( isset( $woo_options['woo_breadcrumbs_show'] ) && $woo_options['woo_breadcrumbs_show'] == 'true' ) { ?>
<div id="breadcrumb">
<?php woo_breadcrumbs(); ?>
</div><!--/#breadcrumbs -->
<?php } ?>
<?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']); ?>
<?php woo_post_meta(); ?>
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<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">
<?php if ( $woo_options['woo_post_content'] == "excerpt" ) { ?>
<span class="read-more"><a class="button" 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 -->
<?php get_footer(); ?>