帝国cms相关链接无内容时调用当前栏目最热信息的方法

aaa

这篇文章主要为大家分享下帝国cms相关链接无内容时调用当前栏目最热信息的方法,需要的朋友可以参考下

 

帝国cms相关链接,这里以帝国cms 7.0为例具体代码 在/e/class/functions.php

 

$keyboardtext='<?=GetKeyboard($ecms_gr[keyboard],$ecms_gr[keyid],$ecms_gr[classid],$ecms_gr[id],$class_r[$ecms_gr[classid]][link_num])?>';可以看到相关链接的信息是通过GetKeyboard得到,找到 GetKeyboard修改一下就可以了,也是在/e/class/functions.php

 

 

 

复制代码代码如下:

 

//取得相关链接

function GetKeyboard($keyboard,$keyid,$classid,$id,$link_num){

global $empire,$public_r,$class_r,$fun_r,$dbtbpre;

if($keyid&&$link_num)

{

$add="id in (".$keyid.")";

$tr=$empire->fetch1("select otherlinktemp,otherlinktempsub,otherlinktempdate from ".GetTemptb("enewspubtemp")." limit 1");//取得相关链接模板

$temp_r=explode("[!--empirenews.listtemp--]",$tr[otherlinktemp]);

$key_sql=$empire->query("select id,newstime,title,isurl,titleurl,classid,titlepic,lastvolume from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$add." order by newstime desc limit $link_num");

while($link_r=$empire->fetch($key_sql))

{

 

 

$text=RepOtherTemp($temp_r[1],$link_r,$tr);

$text=str_replace('[!--no--]',$i,$text);

$text=str_replace('[!--state--]',$link_r[state],$text);

$text=str_replace('[!--lastvolume--]',$link_r[lastvolume],$text);

$keyboardtext.=$text;

//$keyboardtext.=RepOtherTemp($temp_r[1],$link_r,$tr);

}

 

$keyboardtext=$temp_r[0].$keyboardtext.$temp_r[2];

}

else

{

 

$keyid=GetKeyid($keyboard,$classid,0,$link_num);

if($keyid)

{

$fsql=$empire->query("update {$dbtbpre}ecms_".$class_r[$classid][tbname]."_data_1 set keyid='$keyid' where id='$id'");

$add="id in (".$keyid.")";

$tr=$empire->fetch1("select otherlinktemp,otherlinktempsub,otherlinktempdate from ".GetTemptb("enewspubtemp")." limit 1");//取得相关链接模板

$temp_r=explode("[!--empirenews.listtemp--]",$tr[otherlinktemp]);

$key_sql=$empire->query("select id,newstime,title,isurl,titleurl,classid,titlepic,lastvolume from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$add." order by newstime desc limit $link_num");

while($link_r=$empire->fetch($key_sql))

{

 

$text=RepOtherTemp($temp_r[1],$link_r,$tr);

$text=str_replace('[!--no--]',$i,$text);

$text=str_replace('[!--state--]',$link_r[state],$text);

$text=str_replace('[!--lastvolume--]',$link_r[lastvolume],$text);

$keyboardtext.=$text;

//$keyboardtext.=RepOtherTemp($temp_r[1],$link_r,$tr);

}

 

$keyboardtext=$temp_r[0].$keyboardtext.$temp_r[2];

}

else

{

$add="";

$tr=$empire->fetch1("select otherlinktemp,otherlinktempsub,otherlinktempdate from ".GetTemptb("enewspubtemp")." limit 1");//取得相关链接模板

$temp_r=explode("[!--empirenews.listtemp--]",$tr[otherlinktemp]);

$key_sql=$empire->query("select id,newstime,title,isurl,titleurl,classid,titlepic,lastvolume from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where order by onclick desc limit $link_num");

while($link_r=$empire->fetch($key_sql))

{

 

$text=RepOtherTemp($temp_r[1],$link_r,$tr);

$text=str_replace('[!--no--]',$i,$text);

$text=str_replace('[!--state--]',$link_r[state],$text);

$text=str_replace('[!--lastvolume--]',$link_r[lastvolume],$text);

$keyboardtext.=$text;

//$keyboardtext.=RepOtherTemp($temp_r[1],$link_r,$tr);

}

 

$keyboardtext=$temp_r[0].$keyboardtext.$temp_r[2];

}

//----------------------------------------------------------------------------------------------

//$keyboardtext=$fun_r['NotLinkNews'];

}

return $keyboardtext;

}

原来的官方代码

 

在没有关键字的时候直接就给出

 

$keyboardtext=$fun_r['NotLinkNews'];

这显示无相关信息

 

我做了一个无keyid的时候再去获取一次keyid,

 

$keyid=GetKeyid($keyboard,$classid,0,$link_num);

确实没有关键字的时候读取人气最高的几条信息

 

$key_sql=$empire->query("select id,newstime,title,isurl,titleurl,classid,titlepic,lastvolume from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where order by onclick desc limit $link_num");

本文标题:帝国cms相关链接无内容时调用当前栏目最热信息的方法

本文链接:https://www.kaifatu.com/article/807.html

相关文章

帝国cms出现search is close解决办法

帝国cms 出现search is close解决办法如下:后台系统设置里关闭了搜索模块,开启下就行。…

Kaifatu 帝国cms教程
2021-04-12 229

帝国cms源码在PHP7.x环境登录后台空白报错

帝国CMS源码在PHP7.x环境登录后台报错,怎么让帝国CMS源码支持PHP7.x环境呢?…

Kaifatu 帝国cms教程
2021-06-03 164

帝国cms的内容页中当前位置中的首页两字修改方法

在帝国cms使用中,很多朋友问帝国cms中内容页的当前位置中的首页两字修改方法,下面就分享下自己的修改经验。…

Kaifatu 帝国cms教程
2021-07-09 97

帝国CMS自定义列表如何调用1个月内发表的信息?

通过本教程可以使用自定义列表调用指定时间内发布的信息,比如,1周内发表的信息,1个月内发表的信息 统计记录: select count(*) as total from [!db.pre!]ecms_shop where newstime>…

Kaifatu 帝国cms教程
2021-02-21 211

帝国CMS模板中的loop灵动标签怎么附加SQL条件

帝国cms模板网的特别推荐,本站之前用的是变量调用固定的id,因此这个情况会有些用户会觉得不太方便,所以呢,可以改成推荐调用,6条文章,就用6级推荐,这样就简单了,下面直接放实例,大家自行套用即可:模板-公共模板变量-特别推荐(ID20)实…

Kaifatu 帝国cms教程
2021-06-11 487
发表评论
暂无评论