How do I write the wordpress function quot;is_front_page()quot; in twig Timber code?(如何编写wordpress函数“is_front_page()?在树枝木材代码?)
问题描述
我的目标是使用 Twig 代码仅在我的 wordpress 的索引页面上简单地输出一些内容.我设置了一个名为 Home 的静态页面.
My goal is to simply output something only on the index page of my wordpress using Twig code. I have set a static page called Home.
我已经在我的 base.twig 中尝试过这个:
I have tried this in my base.twig:
{% if is_front_page %}
Homepage content
{% endif %}
但这并没有做任何事情,我只是发现由于某种原因不容易找到它.
But this doesn't do anything and I just find can't easily find it for some reason.
感谢任何帮助!提前致谢
Any help is appreciated! Thanks in advance
推荐答案
木材 带有 fn
(也有 function
的别名),让您可以执行外部 PHP 函数.所以这样的事情会起作用:
Timber comes with the fn
(also has alias of function
) that let's you execute external PHP functions. So something like this would work:
{% if fn('is_front_page') %}
Homepage content
{% endif %}
这篇关于如何编写wordpress函数“is_front_page()"?在树枝木材代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何编写wordpress函数“is_front_page()"?在树枝木材代码?
基础教程推荐
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01