Thread Starter
coke
(@coke)
I found this code, which seems to be working. The only problem is the pagination doesn’t seem to be working! Any ideas?
<?php
$week = date('W');
$year = date('Y');
$args=array(
'w'=> $week,
'year'=> $year,
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => -1,
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
echo 'List of Posts for year '.$year . ' week '.$week;
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
<?php
endwhile;
}
wp_reset_query(); // Restore global post data stomped by the_post().
?>