Im trying to pull all entries for “today” from weblog calendar. Why wont this work.
{exp:weblog:entries weblog="calendar" sort="asc" status="Featured|Open"
start_on="{current_time format='%Y-%m-%d 00:01'}” stop_before=”{current_time format='%Y-%m-%d 23:59'}” limit=“10” dynamic=“off”}
I know for a fact that there are 2 entries for 05/12/2011 but only 1 shows.
One is status Open and one is status Featured. Hence the piping.
I’ve also even tried hard coding the date year=“2011” month=“05” day=“12” and still the same issue arises where only the ‘open’ status one shows but not the feature.
Is there a better way to do this?
Thanks!
Update: I tried using year= month = day = again… aparently this only works correctly if you have show_future_entries=“yes”.
{exp:weblog:entries weblog="calendar" sort="asc" status="Featured|Open"
year="{current_time format='%Y'}” month=”{current_time format='%m'}” day=”{current_time format='%d'}” limit=“10” show_future_entries=“yes” dynamic=“off”}
Which makes NO sense… because it does not show future entires, but at the same time does not show all of todays entries without it.
Still looking forward to a better and cleaner solution if anyone has one.