首页 > CMS > PhpCMS > 正文

phpcms v9相关文章order排序功能修改方法

2024-07-09 22:54:14
字体:
来源:转载
供稿:网友
本文介绍了phpcms v9中相关文章order排序功能的修改方法,phpcms v9自带的相关文章模块不支持order排序,调用的相关文章默认为升序,可以参考本文的方法解决。
 
 
 

phpcms v9相关文章order排序功能

phpcms v9自带的相关文章模块不支持order排序,调用的相关文章默认为升序,调出来的相关文章是最早的文章,没有时效性。
只能通过修改程序文件,只需简单修改一个文件,就能满足需求了。(www.jbxue.com 脚本学堂)

修改方法:

打开根目录下的phpcms/modules/content/classes/content_tag.class.php
找到:
$r = $this->db->select($sql2, '*', $limit,'','','id');
修改为:
$r = $this->db->select($sql2, '*', $limit, $order,'','','id');

PC标签格式:
 

复制代码代码示例:
{pc:content action="relation" relation="$relation" id="$id" catid="$catid" num="5" order="inputtime DESC" keywords="$rs[keywords]"}

按发布时间排序:order="inputtime DESC"
按ID降序排序:order="id DESC"

按需求对order排序类型作调整,更新下系统缓存,就可以了。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表