I have the following code in my template and the channel entries tag is not parsing the start_on parameter at all.
The purpose is to return the most popular items for the last two weeks, it returns them all.
<?php $start_time = date('Y-m-d H:i', strtotime("-14 days")); ?>
<h2><span>Popular Reviews</span></h2>
<p><div class="clear"></div><br />
{exp:channel:entries channel="blu_reviews|game_reviews|gear_reviews|literature_reviews|movie_reviews|music_reviews|tv_reviews" limit="3" orderby="view_count_one|entry_date" sort="desc|desc" dynamic="no" start_on="<?php echo $start_time; ?>"}<br />
{reviews_sidebar_details}<br />
{/exp:channel:entries}Any ideas?
Thanks.