我使用Timber插件进行Wordpress。
我创建了一个结果搜索页面。我想强调用户搜索的单词。
在PHP中我写道:
$highlight = array();
if ($terms) {
foreach($terms as $term) {
array_push($highlight, '<span class="blue bold">'.$term.'</span>');
}
}
然后,用PHP替换搜索到的单词:
<p class="date red"><?php echo str_ireplace($terms, $highlight, get_field('subtitle_post')); ?></p
但我不知道如何在Twig(Timber)中改变它?
答案 0 :(得分:1)
您应该使用自定义树枝过滤器。
来自文档:extending timber。 (我试图让它适应你的例子,但你可能需要改变它)
/* functions.php */
add_filter('get_twig', 'add_to_twig');
function add_to_twig($twig) {
/* this is where you can add your own fuctions to twig */
$twig->addExtension(new Twig_Extension_StringLoader());
$twig->addFilter(new Twig_SimpleFilter('highlight', 'highlight'));
return $twig;
}
function highlight($text, array $terms) {
$highlight = array();
foreach($terms as $term) {
$highlight[]= '<span class="blue bold">'.$term.'</span>';
}
return str_ireplace($terms, $highlight, $text);
}
然后您可以使用自定义过滤器
{{ yourField|highlight(words) }}
答案 1 :(得分:0)
您可以使用Twig的地图功能简单地突出显示给定的单词:
{% set sentence = 'The quick brown fox jumps over the lazy dog' %}
{% set highlight = ['the', 'quick', 'fox'] %}
{{ sentence|split(' ')|map( word => ( word|lower in highlight ? '<strong>' ~ word ~ '</strong>' : word ) )|join(' ') }}