phpcms v9自带的相关文章模块不支持order排序,调用的相关文章默认为升序,这样就造成了一个问题,调出来的相关文章是最早的文章,没有时效性。我们只能通过修改程序文件,不过还好,只需简单修改一个文件,就能达到我们的需求。
修改方法:
打开根目录下的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排序类型作调整,更新一下系统缓存,就OK了。
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
相关文章