Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
示例我有一个结构用于结构中的所有子页面/子页面。
我想访问其父级的标题。
结果是所有 1 级标题都将父页面标题显示为标题
所有子页面都以级别 1(父页面标题)作为标题
目前我正在参考 entry.title
entry.title
您可以通过entry.parentin twig 访问结构中的父级。例如:
entry.parent
{% if entry.parent %} <h1> {{ entry.parent.title }}:<br> <small>{{ entry.title }}</small> </h1> {% else %} <h1>{{ entry.title }}</h1> {% endif %}