<?php
$popularpost = new WP_Query( array( 'posts_per_page' => 1,
'meta_key' => 'wpb_post_views_count',
'orderby' => 'meta_value_num',
'order' => 'DESC',
'date_query' => array(
array(
'after' => '1 week ago',
),
),
) );
while ( $popularpost->have_posts() ) : $popularpost->the_post();
?>
No comments:
Post a Comment