EE v2.5.3
我正在努力完成以下任务:
我希望能够告诉EE以下内容:
If Monday - Friday AND
0600 - 1000
Morning Show
else if
1000 - 1500
Midday Show
etc etc..
else if
Sunday AND
0600 - 1200
Sunday Show
else if
1700-1900
Sunday Night Show
else
Default display of Logo
我的(非工作)示例:
<div id="in_studio_now_content" class="container_4">
{if
'{current_time format="%l"}' == Thursday AND
'{current_time format="%H%i"}' >= '1000' AND
'{current_time format="%H%i"}' <= '1700'
}
<div class="showContainer">
<img src="http://placehold.it/75x75" class="container_1" />
<div class="showInfo left">
<h5>The Midday Show</h5>
<p>with Jenn</p>
<p class="timeslot">Weekdays 10:00 - 3:00 pm</p>
<div id="facebookLike">F like 32k</div>
</div>
<a href="#" class="showLink container_3">More about this show ›</a>
</div><!-- /show -->
{/if}
</div><!-- studio content -->
答案 0 :(得分:1)
这应该排序你
{if
'{current_time format='%l'}' == 'Thursday' &&
'{current_time format='%H%i'}' >= '1000' &&'{current_time format='%H%i'}' <= '1700'}
请注意,我已将星期四放在单引号中,并用单引号替换您的时间格式。
答案 1 :(得分:0)
我建议使用来自Croxton的Switchee和IFElse的组合来更快地解析,因为它是一个相当复杂的条件。例如,这样的事情怎么样?
{exp:switchee var="{current_time format='%l'}" parse="inward"}
{case value="Monday|Tuesday|Wednesday|Thursday|Friday"}
{exp:ifelse parse="inward"}
{if '{current_time format="%H%i"}' >= '0600' AND '{current_time format="%H%i"}' <= '0959'}
Morning show
{if:elseif '{current_time format="%H%i"}' >= '1000' AND '{current_time format="%H%i"}' <= '1459'}
Midday Show
{/if}
{/exp:ifelse}
{/case}
{case value="Saturday"}
Do the same sort of thing for Saturday
{/case}
{case value="Sunday"}
Do the same sort of thing for Sunday
{/case}
{/exp:switchee}
另请注意,我已将时间调整了1分钟 - 否则,同一组中的两个条件(因为您使用等于或小于/大于)可能同时为真。