search.php
去掉原来的 <?PHP the_title();?>
换成
<?php
$title = get_the_title();
$keys = trim($s);
$keys = preg_replace(‘/\s+/’, ‘|’, $keys);
$title = preg_replace(‘/(‘. $keys .’)/iu’,
‘<font color=RED><B>\0</B></font>’,
$title);
echo $title;
?>
优点:不必使用插件
缺点:只能对title部分进行高亮化处理。