-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtemplate-archives.php
75 lines (54 loc) · 2.97 KB
/
template-archives.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
<?php
/**
* Template Name: Archives Page
*
* The archives page template displays a conprehensive archive of the current
* content of your website on a single page.
*
* @package WooFramework
* @subpackage Template
*/
get_header();
?>
<!-- #content Starts -->
<?php woo_content_before(); ?>
<div id="content" class="page row">
<div id="main-sidebar-container">
<!-- #main Starts -->
<?php woo_main_before(); ?>
<div id="main">
<?php woo_loop_before(); ?>
<!-- Post Starts -->
<?php woo_post_before(); ?>
<div <?php post_class(); ?>>
<?php woo_post_inside_before(); ?>
<h2 class="title"><?php the_title(); ?></h2>
<div class="entry">
<h3><?php _e( 'The Last 30 Posts', 'woothemes' ); ?></h3>
<ul>
<?php $saved = $wp_query; query_posts( 'showposts=30' ); ?>
<?php if ( have_posts() ) { while ( have_posts() ) { the_post(); ?>
<?php $wp_query->is_home = false; ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> - <?php the_time( get_option( 'date_format' ) ); ?> - <?php echo $post->comment_count; ?> <?php _e( 'comments', 'woothemes' ); ?></li>
<?php } } $wp_query = $saved; ?>
</ul>
<h3><?php _e( 'Categories', 'woothemes' ); ?></h3>
<ul>
<?php wp_list_categories( 'title_li=&hierarchical=0&show_count=1' ); ?>
</ul>
<h3><?php _e( 'Monthly Archives', 'woothemes' ); ?></h3>
<ul>
<?php wp_get_archives( 'type=monthly&show_post_count=1' ); ?>
</ul>
</div><!-- /.entry -->
<?php woo_post_inside_after(); ?>
</div><!-- /.post -->
<?php woo_post_after(); ?>
</div><!-- /#main -->
<?php woo_main_after(); ?>
<?php get_sidebar(); ?>
</div><!-- /#main-sidebar-container -->
<?php get_sidebar( 'alt' ); ?>
</div><!-- /#content -->
<?php woo_content_after(); ?>
<?php get_footer(); ?>