How to display current week post in category
-
Hello,
How to display current week post in each category.
Eg: cat1 current week post should diplay in cat1 only
cat2 current week post should diplay in cat2 only.Currently i am usin this code, but its displaying all category poat in each category
<?php $week = date('W'); $year = date('Y'); query_posts('cat=&post_type=post&posts_per_page=10&orderby=comment_count&order=DESC&year=' . $year . '&w=' . $week); while (have_posts()): the_post(); ?> <a>"><?php the_title(); ?></a> <p><?php content('40'); ?></p> <?php endwhile; wp_reset_query(); ?>
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Please Help
Thanks
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to display current week post in category’ is closed to new replies.