当前位置:首页 > CMS教程 > phpcms > 列表

phpcms手机内容页面添加上一篇和下一篇

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-27 15:48:05 浏览: 评论:0 

本文给大家分享的是在phpcms中的手机内容详情页里添加上一篇和下一篇的方法,十分的简单实用,有需要的小伙伴可以参考下。

在phpcms\modules\wap\index.php里面,搜索下面这句,代码如下:

if(!$r || $r['status'] != 99) showmessage(L('info_does_not_exists'),'blank');

找到后,在它的下一行添加上:

  1. //上一页 
  2. $previous_page = $this->db->get_one("`catid` = '$catid' AND `id`<'$id' AND `status`=99",'*','id DESC'); 
  3. //下一页 
  4. $next_page = $this->db->get_one("`catid`= '$catid' AND `id`>'$id' AND `status`=99"); 
  5. if(emptyempty($previous_page)) { 
  6.                            $previous_page = array('title'=>L('first_page'), 'thumb'=>IMG_PATH.'nopic_small.gif''url'=>'javascript:alert(\''.L('first_page').'\');'); 
  7.                    } 
  8.                    if(emptyempty($next_page)) { 
  9.                            $next_page = array('title'=>L('last_page'), 'thumb'=>IMG_PATH.'nopic_small.gif''url'=>'javascript:alert(\''.L('last_page').'\');'); 
  10.                    } 

在模板中添加

上一页:

< a href="{WAP_SITEURL}&a=show&catid={$catid}&typeid=1&id={$previous_page[id]}" >{$previous_page[title]}</a>

下一页:

<a href="{WAP_SITEURL}&a=show&catid={$catid}&typeid=1&id={$next_page[id]}" >{$next_page[title]}</a>

以上所述就是本文的全部内容了,希望大家能够喜欢。

Tags: phpcms上一篇 phpcms下一篇

分享到: