如何使用树枝获取手工艺品的父页面标题?

时间:2018-11-22 03:54:33

标签: twig craftcms

示例我有一个结构 对于结构中的所有子页面/子页面。

我要访问其父标题。

结果是所有1级标题都将父页面标题显示为标题

所有子页面的标题均为1级(父页面标题)

此刻我正在引用 entry.title

1 个答案:

答案 0 :(得分:0)

您可以通过树枝中的entry.parent访问结构中的父级。例如:

{% if entry.parent %} 
  <h1>
    {{ entry.parent.title }}:<br>
    <small>{{ entry.title }}</small>
  </h1>
{% else %}
  <h1>{{  entry.title }}</h1>
{% endif %}