comicpress-core/archive.php

29 lines
830 B
PHP
Raw Normal View History

2009-06-13 11:58:02 +00:00
<?php get_header() ?>
2009-07-01 00:02:33 +00:00
<div id="content" class="archive">
2009-07-13 09:18:25 +00:00
<?php if (have_posts()) {
2009-07-15 21:10:13 +00:00
include(get_template_directory() . '/partials/archive-header.inc');
2009-07-13 09:18:25 +00:00
// why can't wordpress allow for post date asc sorting out of the box...
2009-07-13 23:06:32 +00:00
$posts = query_posts($query_string . '&order=asc');
2009-07-13 09:18:25 +00:00
while (have_posts()) {
the_post();
if (in_comic_category()) {
2009-07-15 21:10:13 +00:00
include(get_template_directory() . '/partials/archive-comic-post.inc');
2009-07-13 09:18:25 +00:00
} else {
2009-07-15 21:10:13 +00:00
include(get_template_directory() . '/partials/archive-blog-post.inc');
2009-07-13 09:18:25 +00:00
}
2009-07-13 23:06:32 +00:00
}
2009-06-13 11:58:02 +00:00
2009-07-15 21:10:13 +00:00
include(get_template_directory() . '/partials/archive-page-nav.inc');
2009-07-15 21:11:35 +00:00
} else {
include(get_template_directory() . '/partials/archive-not-found.inc');
} ?>
2009-06-13 11:58:02 +00:00
</div>
2009-07-15 21:10:13 +00:00
<?php include(get_template_directory() . '/sidebar.php') ?>
2009-06-13 11:58:02 +00:00
<?php get_footer() ?>