為了讓首頁側邊欄可以即時看到最新的文章及迴響,
所以裝了comment_hacks這個外掛!
作者網頁
首先要先下載comment_hacks,
將解壓縮之後的資料夾上傳到/wp-content/plugins內,,並且到wordpress後台的外掛啟動它!
外掛主要提供的四個函數分別為:
get_recent_posts:最新文章
get_recent_comments:最新迴響
get_mostcommented:最多迴響
get_commentmembersstats:最多迴響的會員
皆下來只要修改一下側邊欄的程式碼,使最新文章和迴響可以顯示即可。
在側邊欄(sidebar.php)中加入以下的程式碼【以下是搭配almost-spring風格輸入】
1 2 3 4 5 6 7 8 9 10 11 12 13 | <li id="最新文章"> <h2><?php _e('最新文章'); ?></h2> <ul> <?php get_recent_posts(); ?> </ul> </li> <li id="最新迴響"> <h2><?php _e('最新迴響'); ?></h2> <ul> <?php get_recent_comments(); ?> </ul> </li> |
補充說明:
如果直接將get_recent_posts套用上almost-spring的話版面會變的很醜,所以要將comment_hacks.php做一點小修改。
打開comment_hacks.php
尋找:
1 | function get_recent_posts($no_posts = 5, $before = '<li>» ', $after = '</li>', $show_pass_post = false, $skip_posts = 0, $post_length = 1) { |
取代為:
1 | function get_recent_posts($no_posts = 5, $before = '<li>', $after = '</li>', $show_pass_post = false, $skip_posts = 0, $post_length = 1) { |
修正完畢之後,版面就會變得比較整齊了!