Tagged: combo widget, enfold, popular posts, range
How can I set a range or filter to show only the most popular posts from the last 6 months?
thanks
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
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
Hi Jeannie,
Please have a look at the following thread:
If you need further assistance please let us know.
Best regards,
Victoria