WordPress中如何高亮显示搜索关键字
使用过像织梦等内容管理系统的都知道,当用户搜索一个关键字时,在搜索结果中会高亮显示。那么,在WordPress中如何实现像google、baidu等搜索引擎的搜索关键字高亮呢?
第一步、打开search.php,找到the_title(),并替换成:
echo $title;
第二步、再在修改的这行之前添加:
<?php $title = get_the_title(); $keys= explode(" ",$s); $title = preg_replace('/('.implode('|', $keys) .')/iu', '<strong class="search-excerpt">\0</strong>', $title); ?>
第三步、保存serach.php,再打开style.css,添加:
strong.search-excerpt { background: yellow; }
大功告成!
转自:hongmop.cn
其他人还看了
本文标签: wordpress




