Jump to navigation

You are currently browsing all posts tagged with '高亮'

wordpress 搜索结果高亮化

  • Posted on December 3, 2009 at 8:01 pm

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部分进行高亮化处理。

Top