gpt4 book ai didi

formatting - 直播功能 - ExpressionEngine

转载 作者:行者123 更新时间:2023-12-04 01:23:36 27 4
gpt4 key购买 nike

EE v2.5.3

我正在尝试完成以下任务:

  • 6 场广播节目(周一至周五)
  • 1 电台节目(周日)
  • 默认设置( Logo )

  • 我希望能够告诉 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 &rsaquo;</a>
    </div><!-- /show -->

    {/if}

    </div><!-- studio content -->

    最佳答案

    这应该对你进行排序

    {if
    '{current_time format='%l'}' == 'Thursday' &&
    '{current_time format='%H%i'}' >= '1000' &&'{current_time format='%H%i'}' <= '1700'}

    请注意,我已将星期四放在单引号中,并将您的时间格式也替换为单引号。

    关于formatting - 直播功能 - ExpressionEngine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13296913/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com