I am trying to create a list of the 10 most viewed entries, which have been posted within the past week.
I copied the code from the docs, but I’m seeing what I believe to be the most popular entries of all time, rather than just those which have been put in to EE within the past 7 days.
<?php
global $LOC;
$start_time = $LOC->decode_date('%Y-%m-%d %H:%i', $LOC->now - 604800);
?>
{exp:weblog:entries weblog="news" limit="10" sort="desc" orderby="view_count_one" dynamic="off" start_on="<?php echo $start_time; ?>" sticky="off"}That’s the PHP I’m using as well as the opening entry tag - any help would be appreciated!