五月242008
【外掛】Wordpress plugins:Where did they go from here
分類於: 外掛
No Comments
->
此套件可以讓你的讀者知道,通常看完這篇文章之後其他人還會去看哪些文章。
安裝方法非常簡單
- 下載檔案並且解壓縮
- 將檔案丟到/wp-content/plugins
- 到後台啟用外掛
基本上這樣就可以了,不過會遇到一個問題就是這樣它會出現在最底部,
這樣讀者在閱讀上就沒有辦法連貫,所以必須修改一下wheredidtheygov1.php
到外掛程式編輯器搜尋 add_action('comment_form','show_where_they_go');
將它給註解掉(在前面打//)這樣就不會在底部出現了。
再來在到你的單篇文章(single.php)裡找你要顯示的位置,
加入下列語法就可以了。
<?php if (function_exists('show_where_they_go')) show_where_they_go(); ?>
預設顯示的文章只有五篇,如果覺得不夠可以到wheredidtheygov1.php
尋找$maxLinks 做更改。
【官方網站】:http://weblogtoolscollection.com/
【檔案下載】:Download Where did they go from here? v1.3


















