萬盛學電腦網

 萬盛學電腦網 >> CMS教程 >> phpcms手機內容頁面添加上一篇和下一篇的教程

phpcms手機內容頁面添加上一篇和下一篇的教程

class="area">              今天電腦知識吧的小編為大家帶來一篇教程:“phpcms手機內容頁面添加上一篇和下一篇的教程”,希望可以幫助到各位站長們,具體如下:在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.                     }
復制代碼

在模板中添加

上一頁:

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

下一頁:

  1. <a href="{WAP_SITEURL}&a=show&catid={$catid}&typeid=1&id={$next_page[id]}" >{$next_page[title]}</a>
復制代碼
copyright © 萬盛學電腦網 all rights reserved