"; $last_year = 0; $last_month = 0; $posts = get_posts('numberposts=-1&orderby=post_date&order=DESC'); foreach ($posts as $post){ setup_postdata($post); $year = mysql2date('Y', $post -> post_date); $month = mysql2date('M', $post -> post_date); if ($year != $last_year){ echo ""; $last_year = $year; $last_month = 0; } if ($month != $last_month && $show_month == 'true'){ echo ""; $last_month = $month; } ?>
post_date); ?>
'; $GLOBALS['post'] = $POST; } ?>