8

我需要获取所有条目的年份列表以在下拉列表中使用。基本上我需要按年份分组输入日期并在列表中输出分组年份。

像这样的东西:https ://dzwonsemrish7.cloudfront.net/items/2G161x0v1U0d2U0k133a/2012-10-23_19-50-41.jpeg?v=9c5b44e8

4

2 回答 2

12

EE1 或 EE2 的这个插件将为您提供所需的内容:http: //devot-ee.com/add-ons/yearlist

{exp:yearlist channel="yourchannel"}
         <a href="{path=archive}/{year}">{year}</a>
{/exp:yearlist}

然后在您的模板中使用 year="" 参数限制条目:

{exp:channel:entries channel="news" year="{segment_2}"}
    <h1>{title}</h1>
    {body}
{/exp:channel:entries}
于 2012-10-24T01:19:36.973 回答
6

使用这个附加组件http://devot-ee.com/add-ons/yearlist你可以这样做:

像这样设置你的下拉列表:

<form name="yourform" action="">
    <select id="yourselect" name="yourselect">
        {exp:yearlist channel="yourchannel"}
            <option value="{path=archive}/{year}">{year}</option>
        {/exp:yearlist}
    </select>
</form>

在您的登录页面上,您将执行以下操作以根据年份显示您的条目:

{exp:channel:entries channel="news" year="{segment_2}"}
    <h1>{title}</h1>
    {body}
{/exp:channel:entries}

并使用一些 jQuery 重定向到您的年份页面:

<script type="text/javascript">
    $('#yourselect').change(function() {
        window.location = $(this).val();
    });
</script>

如果您想通过 javascript 而不是 jQuery 查看这篇文章

于 2012-10-24T01:54:53.507 回答