PhpCms v9推荐位及相关文章相关问题解决方法

前端之家收集整理的这篇文章主要介绍了PhpCms v9推荐位及相关文章相关问题解决方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

PHPCms v9添加内容(带图片)同时选择推荐位问题及相关文章默认排序问题的临时解决方法

1 、添加内容(带图片)同时选择推荐位(调用推荐位要求有缩略图),需要编辑一次后再能在推荐位中调用出来

临时方法PHPcmsmodulescontentfieldsposid,

修改

$position_data_db->insert(array('id'=>$this->id,'catid'=>$this->data['catid'],'posid'=>$r,'module'=>'content','modelid'=>$this->modelid,'data'=>$textcontent,'listorder'=>$this->id));

为:

$position_data_db->insert(array('id'=>$this->id,'thumb'=>'1','listorder'=>$this->id));

不想重新编辑 这是临时 就算没有缩略图也会在position_data表中 标记thumb 为 1

2、调用的相关文章默认为升序,切不支持 order

修改

$r = $this->db->select($sql2,'*',$limit,'','id');

为:

$r = $this->db->select($sql2,$order,'id');

{pc:content action="relation" relation="$relation" id="$id" catid="$catid" num="5" order="inputtime DESC" keywords="$rs[keywords]"}

猜你在找的Dedecms相关文章