Twig_Error_Syntax for quot;Unknown filterquot; with a Twig filter in Timber(“未知过滤器的 Twig_Error_Syntax在 Timber 中使用 Twig 过滤器)
问题描述
这一定很简单,但我看不出有什么问题.我在 https://twig.symfony 使用简单的过滤器示例.com/doc/1.x/advanced.html#filters Twig 1.34 in Timber,一个 WordPress 插件.
This has got to be simple, but I can't see what's wrong. I'm using the simple filter example at https://twig.symfony.com/doc/1.x/advanced.html#filters with Twig 1.34 in Timber, a WordPress plugin.
我加了
// an anonymous function
$filter = new Twig_SimpleFilter('rot13', function ($string) {
return str_rot13($string);
});
和
$twig = new Twig_Environment($loader);
$twig->addFilter($filter);
到我的主题的functions.php文件.
to my theme's functions.php file.
但在我的 view.twig 文件中使用 {{ 'Twig'|rot13 }}
会出现致命错误
But using {{ 'Twig'|rot13 }}
in my view.twig file gives a fatal error
PHP Fatal error: Uncaught exception 'Twig_Error_Syntax'
with message 'Unknown "rot13" filter' in view.twig
还有通知
Undefined variable: loader in functions.php
使用像 {{ 'Twig'|lower }}
这样的过滤器可以正常工作.
Using a filter like {{ 'Twig'|lower }}
works OK.
我需要以不同的方式将函数添加到functions.php吗?
Do I need to add the functions to functions.php in a different way?
推荐答案
根据文档 这里(标题:添加到 Twig)
应该这样做(在functions.php
中):
add_filter('timber/twig', function($twig) {
$twig->addExtension(new Twig_Extension_StringLoader());
// add Your filters here
$twig->addFilter(
new Twig_SimpleFilter(
'rot13',
function($string) {
return str_rot13($string);
}
)
);
// or simply:
// $twig->addFilter(new Twig_SimpleFilter('rot13', 'str_rot13'));
$twig->addFilter(
new Twig_SimpleFilter(
'hello',
function($name) {
return 'Hello, '.$name;
}
)
);
return $twig;
});
这篇关于“未知过滤器"的 Twig_Error_Syntax在 Timber 中使用 Twig 过滤器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“未知过滤器"的 Twig_Error_Syntax在 Timber 中使用 Twig 过滤器
基础教程推荐
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01