出於某些原因,比如你制作免費主題,想宣傳一下自己的網站(前提是你網站的內容對用戶有所幫助),也許你需要在WordPress儀表盤首頁添加自己的Feed訂閱,如下圖所示
那你可以使用類似下面的代碼來實現,添加到主題的functions.php的最後一個 ?> 的前面即可
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
//訂閱WordPress大學 function dashboard_custom_feed_output() { echo '<div class="rss-widget">'; wp_widget_rss_output(array( 'url' => 'https://www.wpdaxue.com/feed/', //rss地址 'title' => '查看WordPress大學的最新內容', 'items' => 6, //顯示篇數 'show_summary' => 0, //是否顯示摘要,1為顯示 'show_author' => 0, //是否顯示作者,1為顯示 'show_date' => 1 )); //是否顯示日期 echo '</div>'; } function h_add_dashboard_widgets() { wp_add_dashboard_widget('example_dashboard_widget', 'WordPress大學', 'dashboard_custom_feed_output'); } add_action('wp_dashboard_setup', 'h_add_dashboard_widgets' ); |
//訂閱WordPress大學
function dashboard_custom_feed_output() {
echo ‘<div class="rss-widget">’;
wp_widget_rss_output(array(
‘url’ => ‘https://www.wpdaxue.com/feed/’, //rss地址
‘title’ => ‘查看WordPress大學的最新內容’,
‘items’ => 6, //顯示篇數
‘show_summary’ => 0, //是否顯示摘要,1為顯示
‘show_author’ => 0, //是否顯示作者,1為顯示
‘show_date’ => 1 )); //是否顯示日期
echo ‘</div>’;
} function h_add_dashboard_widgets() {
wp_add_dashboard_widget(‘example_dashboard_widget’, ‘WordPress大學’, ‘dashboard_custom_feed_output’);
}
add_action(‘wp_dashboard_setup’, ‘h_add_dashboard_widgets’ );
請根據代碼中的提示修改相關信息。