0

我有两个频道,事件和新闻。两者都分配了相同的类别组(国际、国家、摇滚等)。我需要在事件的单个条目中显示与事件属于同一类别的新闻条目的小部件。就像是

{exp:channel:entries channel="event" require_entry="yes"}

{!-- here the event information is displayed --}

<div class="widget"><h2>News</h2>
{exp:channel:entries channel="news" dynamic="no" category="????"}
{/exp:channel:entries}
</div>

{/exp:channel:entries}

这是否可以在 EE 中实现,还是我需要插件/开发?

4

1 回答 1

1

好消息,EE 会为你做这件事 :)

将 related_categories_mode="yes" 添加到新闻频道的 exp:channel:entries 标记中,然后用您节省的所有时间给自己喝杯啤酒。

https://docs.expressionengine.com/latest/channel/channel_entries.html#related-categories-mode

于 2013-04-30T17:25:49.650 回答