42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<?php
|
|
/*
|
|
Template Name: Comic Archive
|
|
*/
|
|
?>
|
|
<?php get_header(); ?>
|
|
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
|
|
|
<?php
|
|
if (have_posts()) {
|
|
while (have_posts()) : the_post();
|
|
comicpress_display_post();
|
|
endwhile;
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
$years = $wpdb->get_col("SELECT DISTINCT YEAR(post_date) FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_date DESC");
|
|
foreach ( $years as $year ) {
|
|
if ($year != (0) ) {
|
|
?>
|
|
<div <?php post_class(); ?>>
|
|
<div class="post-head"></div>
|
|
<div class="post-content">
|
|
<h3><?php echo $year ?></h3>
|
|
<table class="month-table">
|
|
<?php $comicArchive = new WP_Query(); $comicArchive->query('showposts=10000&cat='.get_all_comic_categories_as_cat_string().'&year='.$year);
|
|
while ($comicArchive->have_posts()) : $comicArchive->the_post() ?>
|
|
<tr><td class="archive-date"><?php the_time('M j') ?></td><td class="archive-title"><a href="<?php echo get_permalink($post->ID) ?>" rel="bookmark" title="<?php _e('Permanent Link:','comicpress'); ?> <?php the_title() ?>"><?php the_title() ?></a></td></tr>
|
|
<?php endwhile; ?>
|
|
</table>
|
|
<br class="clear-margins" />
|
|
</div>
|
|
<div class="post-foot"></div>
|
|
</div>
|
|
<?php }
|
|
} ?>
|
|
|
|
<?php if ('open' == $post->comment_status) { comments_template('', true); } ?>
|
|
|
|
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
|
<?php get_footer() ?>
|