使用 Timber 启用 Twig 严格变量
Enabling Twig strict variables with Timber
我是 运行 最新版本的 Timber (0.22.5)。
有没有办法为 Twig 启用 strict_variables
?
想通了 – 将其粘贴到您的 functions.php
文件中:
function theme_configure_twig($twig) {
$twig->enableStrictVariables();
return $twig;
}
add_filter('get_twig', 'theme_configure_twig');
注意上面的$twig
是指Twig_Environment
的Timber实例。
我是 运行 最新版本的 Timber (0.22.5)。
有没有办法为 Twig 启用 strict_variables
?
想通了 – 将其粘贴到您的 functions.php
文件中:
function theme_configure_twig($twig) {
$twig->enableStrictVariables();
return $twig;
}
add_filter('get_twig', 'theme_configure_twig');
注意上面的$twig
是指Twig_Environment
的Timber实例。