我使用 Wordpress 的 Timber 插件。
我创建了一个结果搜索页面。我想突出显示用户搜索的单词。
在 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) 中转换它?