这一定很简单,但我看不出有什么不对。我在https://twig.symfony.com/doc/1.x/advanced.html#filters使用简单的过滤器示例,在Timber中使用Twig 1.34,这是一个WordPress插件。
我添加了
// an anonymous function
$filter = new Twig_SimpleFilter('rot13', function ($string) {
return str_rot13($string);
});
和
$twig = new Twig_Environment($loader);
$twig->addFilter($filter);
到我的主题的functions.php文件。
但在我的view.twig文件中使用{{ 'Twig'|rot13 }}
会产生致命错误
PHP Fatal error: Uncaught exception 'Twig_Error_Syntax'
with message 'Unknown "rot13" filter' in view.twig
和通知
Undefined variable: loader in functions.php
使用像{{ 'Twig'|lower }}
这样的过滤器可以正常工作。
我是否需要以不同的方式将函数添加到functions.php中?
答案 0 :(得分:2)
根据文件https://blog.sixeyed.com/published-ports-on-windows-containers-dont-do-loopback/(标题:添加到树枝)
应该这样做(在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;
});