管理画面、ダッシュボードのデフォルトのRSSボックスのタイトルとフィードを変更する Ads X Bluesky Misskey はてブ 2012.04.25 Code <?php add_action('wp_dashboard_setup', 'my_dashboard_widgets'); function my_dashboard_widgets() { global $wp_meta_boxes; unset( $wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins'], $wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary'], $wp_meta_boxes['dashboard']['side']['core']['dashboard_primary'] ); wp_add_dashboard_widget( 'dashboard_custom_feed', 'フィードのタイトル' , 'dashboard_custom_feed_output' ); } function dashboard_custom_feed_output() { echo '<div class="rss-widget">'; wp_widget_rss_output(array( 'url' => 'http://examole.com/feed/', //RSSのURL 'title' => 'フィードのタイトル', 'items' => 3, //記事の表示数 'show_summary' => 1, 'show_author' => 0, 'show_date' => 1 )); echo '</div>'; } ?> Screen shot Note Description 管理画面、ダッシュボードにあるWP公式のRSSボックスのタイトルとフィードURLを変更する。上記コードは3つを消して1つを追加した WordPress Ver. 3.3.1 Via Replace dashboard news feed with another rss feed