Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #256402

    How can I set a range or filter to show only the most popular posts from the last 6 months?

    thanks

    #256439

    Hi,

    Open /framework/php/class-framework-widgets.php and look for line:

    avia_get_post_list('cat=&orderby=comment_count&posts_per_page='.$posts);
    

    Replace it by this:

    avia_get_post_list( array('cat' => '', 'orderby' => 'comment_count', 'posts_per_page' => $posts, 'date_query' => array( array( 'after' => '-6 months' ) ) ) );
    

    Regards,
    Josue

    #1214382

    Hi. I successfully brought in the class-framework-widgets.php file in the theme editor by bringing that file/folder structure into the child theme. It seems like alot has changed though with the code to do this … Can someone tell me how to make the popular posts only show the most popular posts from the last 7 days?

    Thanks,
    Jeannie

    #1215481

    Hi Jeannie,

    Please have a look at the following thread:

    If you need further assistance please let us know.

    Best regards,
    Victoria

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.