-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
28 lines (25 loc) · 936 Bytes
/
archive.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
<?php get_header(); ?>
<div id="content">
<div id="main" role="main">
<div class="container">
<?php get_search_form(); ?>
<?php if ( is_category('consumer-stories') ) {
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("post_type=story&paged=$paged");
}?>
<?php while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header>
<h2><?php the_title(); ?></h2>
</header>
<div class="entry-content">
<?php the_excerpt(); ?>
</div> <!-- end .entry-content -->
</article>
<?php endwhile; ?>
<?php comments_template( '', true ); ?>
</div> <!-- end .container -->
</div> <!-- end #main -->
<?php get_sidebar(); ?>
</div> <!-- end #content -->
</div> <!-- end #wrap/.container -->
<?php get_footer(); ?>