码迷,mamicode.com
首页 > 移动开发 > 详细

PHPCMS 手机门户文章添加下一篇和上一篇

时间:2017-11-21 17:03:39      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:pcm   bsp   col   pre   typeid   esc   模板   next   ast   

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

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

 

二、搜索到后,在它的下一行增加如下代码

//上一页
$previous_page = $this->db->get_one("`catid` = ‘$catid‘ AND `id`<‘$id‘ AND `status`=99",‘*‘,‘id DESC‘);
//下一页
$next_page = $this->db->get_one("`catid`= ‘$catid‘ AND `id`>‘$id‘ AND `status`=99");
if(empty($previous_page)) {
    $previous_page = array(‘title‘=>L(‘first_page‘), ‘thumb‘=>IMG_PATH.‘nopic_small.gif‘, ‘url‘=>‘javascript:alert(\‘‘.L(‘first_page‘).‘\‘);‘);
}
if(empty($next_page)) {
    $next_page = array(‘title‘=>L(‘last_page‘), ‘thumb‘=>IMG_PATH.‘nopic_small.gif‘, ‘url‘=>‘javascript:alert(\‘‘.L(‘last_page‘).‘\‘);‘);
}

 

三、模板中的调用代码如下

<!-- <a class="active" href="{WAP_SITEURL}&a=show&catid={$catid}&typeid=1&id={$previous_page[id]}" style="width: 26%;">
    上一篇
</a>
<a class="active" href="{WAP_SITEURL}&a=show&catid={$catid}&typeid=1&id={$next_page[id]}" style="width: 26%;">
    下一篇
</a> -->
<a class="active" href="/show-{$catid}-{$typeid}-{$previous_page[id]}-1.html" style="width: 26%;">
    {if $previous_page[id] == 0}没有了{else}上一篇{/if}
</a>
<a class="active" href="/show-{$catid}-{$typeid}-{$next_page[id]}-1.html" style="width: 26%;">
    {if $next_page[id] == 0}没有了{else}下一篇{/if}
</a>

 

PHPCMS 手机门户文章添加下一篇和上一篇

标签:pcm   bsp   col   pre   typeid   esc   模板   next   ast   

原文地址:http://www.cnblogs.com/tpshop/p/7873611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!