云飞是个不折不扣的00后,喜欢搞点花里胡哨,默认模板的侧边栏实在不习惯所以美化了一波
效果图:
文件位置/template/c_default/html/index_article.html
控制器:/application/index/controller/index.php
$this->assign('count', $count);//文章总数
//文章通过数
$countopen=$article->where(array('uid'=>$a['uid'],'open'=>1))->count();
$this->assign('countopen', $countopen);//文章通过总数
$this->assign('zan', $a['zan']);//当前获赞数
if ($a) {
if ($a['outlink']) {
$this->success('正在跳转到外部页面', $a['outlink'], null, 1);
}
//根据模板找到所需要的渲染页面
$cate = Db::name('articlecate')->where('id',$a['tid'])->find();
$template=$cate['template'];
$article->where("id", $id)->setInc('view', 1);
$t = $article->alias('a')->join('articlecate c', 'c.id=a.tid')->join('user m', 'm.id=a.uid')->field('a.*,c.id as cid,c.name,c.template,c.alias,m.id as userid,m.grades,m.point,m.userhead,m.username,m.sex,m.status,m.description,m.developer,m.userhome')->where('a.id', $id)->find();
$t['keyword_arr']=explode(',',$t['keywords']);
$this->assign('t', $t);
作者: 大婊謌 时间:2020-03-28 16:02:46
你这问题很大啊 怎么添加都报错
作者: 神话菜鸟 时间:2020-03-28 16:35:53
还有上面那一段$count没复制下来呢
作者: 芷苒 时间:2020-03-28 18:01:47