帝国CMS搜索页模板,搜索的关键字结果标题加红的方法!


avatar
pcwnas 2023-04-25 129

原文来自:https://liye5.com/

  帝国CMS搜索页模板,搜索的关键字结果标题加红的方法!

  经常会有互联网的朋友问到帝国CMS建站的相关问题,例如帝国CMS搜索页模板,搜索的关键字结果标题怎么设置加红呢?今天帝国CMS模板网就来告诉大家帝国CMS搜索页模板,搜索的关键字结果标题加红的方法,一起来看看吧:

  在搜索列表模板列表内容模板(list.var) (*)加上以下代码

$searchid=$_GET['searchid'];
$search=$empire->fetch1("selectkeyboardfrom{$dbtbpre}enewssearchwheresearchid='$searchid'limit1");
$keyboard=$search['keyboard'];
$title=str_replace($keyboard,"<fontcolor='red'>$keyboard</font>",$r[title]);
$smalltext=str_replace($keyboard,"<fontcolor='red'>$keyboard</font>",$r[smalltext]);
$listtemp='
<li><ahref="[!--titleurl--]"title="[!--oldtitle--]"target="_blank">'.$title.'</a>
<divclass="media-box-note">'.$smalltext.'</div></li>';

  在使用程序代码前打钩,如下图所示:

  好了,到这里是结束了,大家自行去测试吧!