How would you create a “weekly” archive?

<?php $args = array(
    'type'            => 'weekly',
    'limit'           => ,
    'format'          => 'html', 
    'before'          => ,
    'after'           => ,
    'show_post_count' => false,
    'echo'            => 1 ); ?>
<?php wp_get_archives( $args ); ?>

See this Codex article: wp_get_archives

Leave a Comment