Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ. Các bạn đi ngang nếu được cho Lâm 1 like và 1 đăng ký kênh Youtube nhé !!
Thêm đoạn code phía dưới vào function.php để Xóa các Dashboard Widget ở màn hình bắt đầu WordPress – Remove all the default WordPress dashboard widgets
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
function wct_meta_boxes() { /** * Removes the "Welcome Panel" widget */ remove_action('welcome_panel', 'wp_welcome_panel'); /** * Removes the "Dashboard PHP Notification" widget */ remove_meta_box( 'dashboard_php_nag', 'dashboard', 'normal' ); /** * Removes the "Right Now" widget that tells you post/comment counts * and what theme you're using. */ remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' );/** * Removes the recent comments widget */ remove_meta_box( 'dashboard_recent_comments', 'dashboard', 'normal' );/** * Removes the incoming links widget. */ remove_meta_box( 'dashboard_incoming_links', 'dashboard', 'normal' );/** * Removes the plugins widgets that displays the most popular, * newest, and recently updated plugins */ remove_meta_box( 'dashboard_plugins', 'dashboard', 'normal' );/** * Removes the quick press widget that allows you post right from the dashboard */ remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );/** * Removes the widget containing the list of recent drafts */ remove_meta_box( 'dashboard_recent_drafts', 'dashboard', 'side' );/** * Removes the "WordPress Blog" widget */ remove_meta_box( 'dashboard_primary', 'dashboard', 'side' );/** * Removes the "Other WordPress News" widget */ remove_meta_box( 'dashboard_secondary', 'dashboard', 'side' );/** * Removes the "Site Health" widget */ remove_meta_box('dashboard_site_health', 'dashboard', 'normal');/** * Removes the "Recent activity" widget */ remove_meta_box('dashboard_activity', 'dashboard', 'normal'); } add_action( 'wp_dashboard_setup', 'wct_meta_boxes' ); |
Bài viết này thực hiện (hoặc lụm bài về đăng câu like từ các trang khác) bởi Việt Lâm Coder một YOUTUBER có tâm và đẹp trai siêu cấp vô địch zũ trụ. Các bạn đi ngang nếu được cho Lâm 1 like và 1 đăng ký kênh Youtube nhé !!