PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通

QQ:420220301 微信/手机:150-3210-7690
当前位置:首页 > CMS教程 > PHPCMS

解决phpcms v9的标签列表页(tag_list)无法调用其他字段的方法

管理员 2022-08-28
PHPCMS
411
做网站优化的朋友一般非常看重标签,但是phpcms v9的标签页面只能调用一些常用字段,比如 标题,链接,描述等等,如果标签页面想调用缩略图,栏目,文章作者等等,则无法调用!下边对tag.php做简单二次开发!

注意:咱们所说的这个标签是指content下边的tag_list.html而不是tag模块,tag_list其实质上是关键词,然后通过关键搜素,和tag还不一样!因此打开:

phpcmsmodulescontenttag.php

找到:45-52行
  1. foreach ($infos as $info) { 
  2.     list($contentid, $modelid) = explode('-', $info['contentid']); 
  3.     $this->db->set_model($modelid); 
  4.     $res = $this->db->get_one(array('id'=>$contentid), 'title, description, url, inputtime, style'); 
  5.     $res['title'] = str_replace($tag, ''.$tag.'', $res['title']); 
  6.     $res['description'] = str_replace($tag, ''.$tag.'', $res['description']); 
  7.     $datas[] = $res; 
  8.   } 
通过代码应该能看出来,其实tag只调用了title, description, url, inputtime, style这五个属性,所以想调用其他属性,只需要增加对应字段就行了,在这里我增加了username,catid, thumb, ,改动如下:

  1. foreach ($infos as $info) { 
  2.     list($contentid, $modelid) = explode('-', $info['contentid']); 
  3.     $this->db->set_model($modelid); 
  4.     $res = $this->db->get_one(array('id'=>$contentid), 'title, description,username,catid, url,thumb, inputtime, style'); 
  5.     $res['title'] = str_replace($tag, ''.$tag.'', $res['title']); 
  6.     $res['description'] = str_replace($tag, ''.$tag.'', $res['description']); 
  7.     $res['username'] = str_replace($tag, ''.$tag.'', $res['username']); 
  8.     $res['catid'] = str_replace($tag, ''.$tag.'', $res['catid']); 
  9.     $res['thumb'] = str_replace($tag, ''.$tag.'', $res['thumb']); 
  10.     $datas[] = $res; 
  11.   } 
想调用什么,只需要增加对应的字段,然后赋值给$res即可!

希望以上内容对你有所帮助!如果还有其他问题,请随时提问。 各类知识收集 拥有多年CMS企业建站经验,对 iCMS, Fastadmin, ClassCMS, LeCMS, PbootCMS, PHPCMS, 易优CMS, YzmCMS, 讯睿CMS, 极致CMS, Wordpress, HkCMS, YznCMS, WellCMS, ThinkCMF, 等各类cms的相互转化,程序开发,网站制作,bug修复,程序杀毒,插件定制都可以提供最佳解决方案。

相关推荐

扫码关注

qrcode

QQ交谈

回顶部