phpcms v9調用全站最新文章(最近更新所有內容)
第一步 修改 phpcms\modules\content\classes content_tag.class.php 在最后面的 } 上面添加flf免費資源網(wǎng)
public function newcontent($data){ $num = intval($data['limit']) ? intval($data['limit']) : '20'; // 設置排序 switch($data['order']){ case '1': $order = ' `id` ASC '; break; case '2': $order = ' `id` DESC '; break; case '3': $order = ' `inputtime` ASC '; break; case '4': $order = ' `inputtime` DESC '; break; case '5': $order = ' `updatetime` ASC '; break; case '6': $order = ' `updatetime` DESC '; break; default: $order = ' `id` DESC '; } if($data['catid']){ $catids = explode(',', $data['catid']); foreach($catids as $catid){ $catid = intval($catid); if(empty($catid))continue; $this->set_modelid($catid); $where = $this->category[$catid]['child'] ? ' `catid` IN ('.$this->category[$catid]['arrchildid'].')' : " `catid` = $catid"; $datas = $this->db->select($where, '*', $num, $order); $data[$catid]['data'] = $datas; // 記錄本次的文章數(shù) $data['num'][] = count($datas); $model_num++; } }else{ $models = getcache('model', 'commons'); foreach($models as $model){ $this->db->set_model($model['modelid']); $datas = $this->db->select('', '*', $num, $order); $data[$model['modelid']]['data'] = $datas; // 記錄本次的文章數(shù) $data['num'][] = count($datas); $model_num++; } } if($data){ // 獲取每個模型應該截取的條數(shù) $num = ceil($num/$model_num); // 循環(huán)條數(shù)記錄用于找出條數(shù)不滿足的數(shù)量然后進行平均 $w_num = $w_num_t = ''; foreach($data['num'] as $num_t){ if($num_t < $num){ $w_num += $num-$num_t; $w_num_t++; } } // 判斷是否有不滿足平均數(shù)的 如果有那么就增加平均值 if($w_num_t){ $num += ceil($w_num/($model_num-$w_num_t)); } $datas = array(); foreach($data as $r){ $r_n = ''; if(is_array($r['data'])) foreach($r['data'] as $r_t){ $datas[] = $r_t; if(++$r_n == $num)break; } } return $datas; }else{ return false; } }
第二步:模板調用
其實就和默認的文章列表調用差不多flf免費資源網(wǎng)
flf免費資源網(wǎng)
{pc:content action="newcontent" }
參數(shù)說明:flf免費資源網(wǎng)
catid: 可有可無 加了就只調用指定欄目的信息 多個欄目請使用英文半角的 ,間隔
order:排序 參數(shù)值:1-7 具體的含義在代碼里面很容易看明白
num:調用數(shù)量 不指定默認調用20條flf免費資源網(wǎng)