热搜词
发表于 2016-2-19 15:13:03 | 显示全部楼层 |阅读模式
在phpcms\modules\wap\index.php里面,搜索如下这句代码


  1. 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(empty($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(empty($next_page)) {
  9.                             $next_page = array('title'=>L('last_page'), 'thumb'=>IMG_PATH.'nopic_small.gif', 'url'=>'javascript:alert(\''.L('last_page').'\');');
  10.                     }
复制代码

在模板show.html
中添加

  1. 上一页:
  2. <a href="{WAP_SITEURL}&a=show&catid={$catid}&typeid=1&id={$previous_page[id]}"> {$previous_page[title]} </a>  <br />
  3. 下一页:
  4. <a href="{WAP_SITEURL}&a=show&catid={$catid}&typeid=1&id={$next_page[id]}" >{$next_page[title]}</a><br />
复制代码



全部评论0
回复
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|小黑屋|管理员之家 ( 苏ICP备2023053177号-2 )

GMT+8, 2024-11-25 07:15 , Processed in 0.174645 second(s), 26 queries .

Powered by Discuz! X3.5

Cpoyright © 2001-2024 Discuz! Team