comicpress-core/index.php

43 lines
1.1 KiB
PHP
Raw Normal View History

<?php
global $comicpress;
2009-06-13 11:58:02 +00:00
get_header();
2009-07-12 23:31:47 +00:00
$nav_comics = $comicpress->get_nav_comics();
$post = $nav_comics['last'];
?>
2009-06-13 11:58:02 +00:00
<?php if (!is_paged()) { ?>
<div id="comic-head"></div>
<div id="comic"><?php do_action('show_comic', null); ?></div>
<div id="comic-foot"></div>
<?php } ?>
<div id="content" class="narrowcolumn">
2009-07-15 21:10:13 +00:00
<?php if (!is_paged()) { include(get_template_directory() . '/partials/index-comic-post.inc'); } ?>
2009-07-13 23:06:32 +00:00
<div id="blogheader"><!-- This area can be used for a heading above your main page blog posts --></div>
<?php
$wp_query = new WP_Query();
$wp_query->query(
'showposts=' .
(int)$comicpress->comicpress_options['blogpost_count'] .
'&cat=-' .
$comicpress->comicpress_options['comic_category_id'] .
'&paged=' .
$paged
);
while ($wp_query->have_posts()) {
$wp_query->the_post();
2009-07-15 21:10:13 +00:00
include(get_template_directory() . '/partials/index-blog-post.inc');
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/index-blog-post.inc');
2009-07-13 23:06:32 +00:00
?>
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() ?>