下拉式選單,用標題來選擇前往的頁面。
Split Post 很棒的文章分頁外掛
發佈留言
2014.01.03更新
現在好像只要在文章裡打
<!--nextpage-->
就可以分頁了!!
參考資料:http://codex.wordpress.org/Styling_Page-Links
——————-
4.把文章分頁
4.1資料來源:艾德的部落格天空
4.2在single.php中,找到
<?php the_content(); ?> |
在其下方加入以下敘述:
<div class="link_pages"><?php wp_link_pages(array('before' => '<p><strong>文章分頁: </strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?></div> |
4.3打開style.css在檔案最下方加入以下敘述
/* 單篇文章分頁 */ .link_pages { font: 12px Verdana, Arial, Helvetica, sans-serif; padding-top: 30px; padding-bottom: 10px; margin: 0px; } .link_pages a { padding: 2px 6px; border: solid 1px #ddd; background: #fff; text-decoration: none; } .link_pages a:hover { color: #ffffff; background: #D1CAAF; border-color: #D1CAAF; text-decoration: none; } |
4.4 在文章中需要分頁的地方輸入<!–nextpage–>