我们使用Wordpress建好了网站,可以在网站上添加搜索功能。这个功能的制作方法,可见教程:如何制作wordpress 网站搜索功能。
制作的wordpress 网站搜索功能后,搜索结果的颜色都是一样的,我们可以对搜索结果进行改造,实现实现Wordpress搜索结果关键词飘红。效果如下图:

下面学做网站论坛来介绍一下如何制作这样的关键词飘红的搜索页面。
<?php if(have_posts()): while(have_posts()
<?php
$s = trim(get_search_query()) ? trim(get_search_query()) : 0;
$title = get_the_title();
//300是摘要字符数,......是结束符号。
$content = mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 300,"......");
if($s){$keys = explode(" ",$s);
$title = preg_replace('/('.implode('|', $keys) .')/iu','<strong style="color: #953b39;">