看到很多的wordpress主题的仪表盘里,有关于这款主题的文章介绍,而这些文章还是来自wordpress主题作者站的,那么。。如何去添加这个站外文章块呢?呵呵,今天的教程简单,一针见血的贴代码:
往wordpress主题文件夹里的functions.php文件里加入以下代码
- //后台仪表盘订阅
- function dashboard_custom_feed_output() {
- echo '<div class="rss-widget">';
- wp_widget_rss_output(array(
- 'url' => 'http://www.2zzt.com/feed/', //rss地址
- 'title' => '查看网站的最新内容',
- 'items' => 6, //显示篇数
- 'show_summary' => 1, //是否显示摘要,1为显示
- 'show_author' => 0, //是否显示作者,1为显示
- 'show_date' => 1 )); //是否显示日期
- echo '</div>';
- }
- function h_add_dashboard_widgets() {
- wp_add_dashboard_widget('example_dashboard_widget', '快速了解WP操作', 'dashboard_custom_feed_output');
- }
- add_action('wp_dashboard_setup', 'h_add_dashboard_widgets' );
上面的代码中,替换feed地址为你们自己的即可
对,依据是根据feed来获取文章的,如果你的网站禁用了feed,那么教程就没用了,比如大叔的站。。。就是禁用了feed了。。。。