• Resolved shaibaz_m

    (@shaibaz_m)


    Hello,

    I have implemented wp-tab for popular posts, currently, I’m not sure for how many days it filters the popular category. Can you please help me to limit it to 15 days?

Viewing 1 replies (of 1 total)
  • Plugin Author MyThemeShop

    (@mythemeshop)

    Hello,

    There isn’t a filter you can use yet at the moment to do this. For now, kindly edit wp-tab-widget.php and replace

    
    $popular = new WP_Query( array('ignore_sticky_posts' => 1, 'posts_per_page' => $post_num, 'post_status' => 'publish', 'orderby' => 'meta_value_num', 'meta_key' => '_wpt_view_count', 'order' => 'desc', 'paged' => $page));  
    

    with

    
    $popular = new WP_Query( array(
    	'ignore_sticky_posts' => 1, 
    	'posts_per_page' => $post_num, 
    	'post_status' => 'publish', 
    	'orderby' => 'meta_value_num', 
    	'meta_key' => '_wpt_view_count', 
    	'order' => 'desc', 
    	'paged' => $page, 
    	'date_query' => array(
    		array( 'after' => '15 days ago' ),
    	),
    ) );     
    

    Hope that helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Limit my popular posts to 15 days’ is closed to new replies.