OctoberCms Blog插件分类成'activeMenuItem'功能?

OctoberCms Blog plugin categories into 'activeMenuItem' function?

在 Post 中显示“slug”类别:

{{ post.categories[0].slug }}

但是,如何将这个“slug”添加到 'activeMenuItem'?

function onInit()
{
 $this['activeMenuItem'] = ???;
}

谢谢!

UPD,此处使用:

{% for item in items %}
<a href="{{ item.url }}">
<span class="{{ item.isActive or item.isChildActive ? ' active' : '' }}">{{ item.title }}</span>
</a>
{% endfor %}

你也可以在 twig 中分配变量

{% set activeMenuItem = post.categories[0].slug %}

Now use this variable into your menu partial

如有疑问请评论。

function onEnd() {
    $this['activeMenuItem'] = $this->post->categories[0]->slug;
}