<?php
query_posts('meta_key=post_views_count&posts_per_page=3&orderby=meta_value_num&
order=DESC');
if (have_posts()) : while (have_posts()) : the_post();
?> <ul class="rpul">
<li> <div class="class="post-thumb wp-post-image" style=' '> <?php if ( has_post_thumbnail() ) : ?>
<?php the_post_thumbnail('thumbnail') ?>
<?php endif ?> </div><div class='cat-post-text'>
<h1> <a href="<?php the_permalink(); ?>"><?php the_title();
?>
The above code works well but I want to modify it to show only popular post in 7 days. Thanks