Các bạn có thể chèn thêm vào Dashboard bất cứ chức năng nào mà bạn muốn. Trong bài viết này chúng tôi sẽ hướng dẫn các bạn chèn thêm chức năng hiển thị tin RSS tại Dashboard.
Bạn chỉ cần chèn đoạn code sau vào trong file functions.php của themes bạn đang sử dụng:
function wpc_dashboard_widgets() { global $wp_meta_boxes; // remove unnecessary widgets // var_dump( $wp_meta_boxes['dashboard'] ); // hủy hết các chức năng mặc định của wp 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'] ); // add a custom dashboard widget wp_add_dashboard_widget( 'dashboard_custom_feed', 'News from siteXY', 'dashboard_custom_feed_output' ); //add new RSS feed output } function dashboard_custom_feed_output() { echo '<div class="rss-widget">'; wp_widget_rss_output(array( 'url' => 'http://tapchicntt.com/feed', // liên kế RSS bạn muốn hiển thị. 'title' => 'Tin tức tù website tapchicntt.com', 'items' => 4, 'show_summary' => 1, 'show_author' => 0, 'show_date' => 1 )); echo "</div>"; } add_action('wp_dashboard_setup', 'wpc_dashboard_widgets');
Chúc các bạn thành công!