query('&showposts=1000&cat='.get_all_comic_categories_as_cat_string().'&year='.$archive_year); while ($comicArchive->have_posts()) : $comicArchive->the_post(); $calTitle = get_the_title(); $calLink = get_permalink(); $calDay = get_the_time('j'); $calMonth = get_the_time('F'); $calComic[$calMonth.$calDay] = array('link' => $calLink, 'title' => $calTitle); endwhile; $post = $tempPost; function leapYear($yr) { if ($yr % 4 != 0) { return 28; } else { if ($yr % 100 != 0) { return 29; } else { if ($yr % 400 != 0) { return 28; } else { return 29; } } } } $leapYear = leapYear($archive_year); $month['1'] = array('month' => 'January', 'days' => '31'); $month['2'] = array('month' => 'February', 'days' => $leapYear); $month['3'] = array('month' => 'March', 'days' => '31'); $month['4'] = array('month' => 'April', 'days' => '30'); $month['5'] = array('month' => 'May', 'days' => '31'); $month['6'] = array('month' => 'June', 'days' => '30'); $month['7'] = array('month' => 'July', 'days' => '31'); $month['8'] = array('month' => 'August', 'days' => '31'); $month['9'] = array('month' => 'September', 'days' => '30'); $month['10'] = array('month' => 'October', 'days' => '31'); $month['11'] = array('month' => 'November', 'days' => '30'); $month['12'] = array('month' => 'December', 'days' => '31'); ?>

| get_col("SELECT DISTINCT YEAR(post_date) FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY post_date ASC"); foreach ( $years as $year ) { if ($year != (0) ) { ?> |