popular post weekly and monthly
These $args is what you need and you may also use that in query_posts(); $args = array( ‘post_type’ => array( ‘post’ ), ‘post_status’ => ‘publish’, ‘posts_per_page’ => 9, ‘cat’ => $link1, // try better variable name ‘meta_key’ => ‘post_views_count’, ‘orderby’ => ‘meta_value_num’, ‘order’ => ‘DESC’, ‘date_query’ => array( array( ‘after’ => ‘1 months ago’, ), … Read more