织梦相关专题的调用方法

阅读  ·  发布日期 2018-10-06 11:57  ·  admin

在需要调用相关专题的地方添加:dede标签{dede:field.keywords function=’getlikespc(@me)’/}

 

include/extend.func.php 文件中添加:

01 /*author:织梦58
02 *function:检索和当前页面关键字相同的专题页面
03 *time:2017.09.08
04 */
05 function getlikespc($keywords=0)
06 {
07 global $cfg_basehost,$dsql;
08 $key = array();
09 $key = explode(“,”,$keywords);
10 $likesql;
11 $len =count($key);
12 for($i=0;$i<$len;$i++){
13 $now = $len-$i;
14 if($now==1){
15 $likesql .= “keywords like ‘%”.$key[$i].”%’ “;
16 }else{
17 $likesql .= “keywords like ‘%”.$key[$i].”%’ or “;
18 }
19 }//关键字分割检索,拼接 查询语句
20 $getsql = “SELECT * from  idea_archives where idea_archives.channel=’-1′ and $likesql order by  idea_archives.id “;//查询与该文章关键字相同的专题
21 //echo $getsql;
22 $toback;
23 $dsql->Execute(“m”,$getsql);
24 while($row = $dsql->GetObject(‘m’))
25 {
26 $title = $row->title;//专题标题
27 $id = $row->id;//专题ID
28 $toback = “<a href=’”.$cfg_basehost.”/special/arc-”.$id.”.html’ >”.$title.”</a>”;
29 }
30 return $toback;//返回文章链接
31 }

专题列表样式可修改$toback的样式