1. 程式人生 > >帝國CMS教程,使用靈動標籤呼叫上一篇下一篇的文章標題圖片的方法

帝國CMS教程,使用靈動標籤呼叫上一篇下一篇的文章標題圖片的方法

很多時候,我們為了網站的更加美觀,或者讓網頁更強的使用者體驗,我們不得不改變帝國本身的設計

說正事開始:

帝國預設的上一篇、下一篇連結比較單一,無法滿足個性化,如下:

下一篇連結:

1

[!--info.next--]

上一篇連結:

1

[!--info.pre--]

用靈動標籤呼叫上、下一篇連結,標題可擷取字數,可自定義顯示文字,或用圖示代替:

=====靜態呼叫========

下一篇連結:

1

2

3

4

5

6

7

8

9

10

11

12

[e:loop={'selfinfo',1,0,0,'id>'.$navinfor[id].'','id asc'}]

<a href="<?php

echo $bqsr[titleurl];

$pre='true';

?>">

<img src="[!--news.url--]skin/mm/pic/pic_after.gif" style='background:url(<?=$bqr[titlepic]?>) center 50%'><?=esub(

$bqr[title],20)?></a>

[/e:loop]

<?php

if(empty($pre)){

echo "下一篇:很抱歉沒有了";

}

?>

上一篇:

1

2

3

4

5

6

7

8

9

10

11

12

[e:loop={'selfinfo',1,0,0,'id<'.$navinfor[id].'','id desc'}]

<a href="<?php

echo

 $bqsr[titleurl];

$pre='true';

?>">

<img src="[!--news.url--]skin/mm/pic/pic_before.gif" style='background:url(<?=$bqr[titlepic]?>) center 50%'><?=esub($bqr[title],20)?></a>

[/e:loop]

<?php

if(empty($pre)){

echo "上一篇:很抱歉沒有了";

}

?>

如果需要擷取標題字數,則將標題標籤替換即可:

不擷取標題:

1

<?=$bqr[title]?>

擷取標題字數:

1

<?=esub($bqr[title],30)?>

標題圖片:

1

<?=$bqr[titlepic]?>

======動態呼叫=========

動態呼叫上一篇連結:

1

<a href="[!----news.url--]e/public/GotoNext?classid=[!----classid--]&id=[!----id--]&enews=next">下一篇</a>

動態呼叫下一篇連結:

1

<a href="[!-news.url--]e/public/GotoNext?classid=[!-classid--]&id=[!-id--]&enews=pre">上一篇</a>