使用Timber(WordPress)定位特定页面模板

时间:2017-01-17 20:31:42

标签: php wordpress timber

我正在尝试使用Timber文件(.twig)在特定页面上输出一些HTML内容。我能够在主页上输出内容,但不能在特定页面上输出内容。

我尝试了以下代码:

% if fn (is_page('proprietes')) %}
    <h5 class="widget__headline">Test</h5>
    {% endif %}

但我最后得到一个空白页面。我可能犯了转储语法错误......

感谢您的帮助。

2 个答案:

答案 0 :(得分:1)

正确的方法:

{% if fn('is_page', page) %}

“页面”可以是子弹/ id / id的数组等。

答案 1 :(得分:0)

尝试使用id而不是slug,例如:

{% if fn (is_page(7)) %}
    <h5 class="widget__headline">Test</h5>
{% endif %}