剛剛在逛 http://wp-plugins.net/ 時發現一個不錯的 plugin:PageBar
這個 PageBar 顧名思義就是在部落格裡加入頁數橫條,長的樣這樣子的東西:
安裝方式蠻簡單的:
1. 下載 PageBar 後解壓縮,把 pagebar.php 上傳到 plugins 目錄裡
2. 在 The Loop (註) 後面加上這一段程式碼:
<?php wp_pagebar(array(‘before’=>’Pages: ‘))?>
3.到後台去啟動 PageBar 就 ok 了
※註:The Loop 到底是什麼目前我不太懂,但知道他的範圍是
<?php while (have_posts()) : the_post(); ?>
到
<?php endwhile; ?>
所以要把 PageBar 的程式碼加在 <?php endwhile; ?> 之後就行了
至於 The Loop 在那裡?
它就位在 index.php、archive.php 及 search.php 裡面,分別是首頁、文章彙整跟搜尋結果裡。