Display popular posts from last 7 days
-
Hi
I am using the following to display 2 posts with the most views.
I have this in my functions.php
https://pastebin.com/M3aRTB6S<div id ="latest"> <ul> <?php query_posts('meta_key=post_views_count&posts_per_page=2&orderby=meta_value_num&order=DESC'); if (have_posts()) : while (have_posts()) : the_post(); ?> /posts here/ <?php endwhile; endif; wp_reset_query(); ?> </ul> </div>
What do I need to add to only show the 2 most viewed posts from the last 7 days only?
Thanks.
Viewing 14 replies - 1 through 14 (of 14 total)
Viewing 14 replies - 1 through 14 (of 14 total)
- The topic ‘Display popular posts from last 7 days’ is closed to new replies.