我正在尝试使用 Rainlab 博客插件在十月 CMS 上创建一个博客,并且在我的类别页面上,我想将当前类别的名称作为标题。我无法弄清楚如何做到这一点,文档中没有关于获取当前类别的内容,谷歌也无法为我找到它。
问问题
3169 次
1 回答
4
只需在类别模板中使用 {{ category.name }} 即可。
如果您没有自定义类别模板(并且使用插件中的默认模板),那么您需要将一个添加到您的主题中。我的看起来像这样:
title = "Blog Category"
url = "/blog/category/:slug/:page?"
layout = "default"
[blogPosts]
categoryFilter = "{{ :slug }}"
==
function onEnd()
{
// Optional - set the page title to the category name
if ($this->category)
$this->page->title = $this->category->name;
}
==
<div class="container blog-category">
<div class="row">
<div class="col-md-8 col-md-offset-2">
{% if not category %}
<h1>Category not found</h1>
{% else %}
<h1>{{ category.name }}</h1>
{% for post in posts %}
{% partial "blog/list-single" post=post %}
{% else %}
<div class="no-data">{{ noPostsMessage }}</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>
于 2016-02-24T01:25:03.600 回答