Disable Sidebar and Dashboard Widgets (ok) full

C:\xampp\htdocs\reset\wp-content\plugins

👉Muốn tìm class add daskboad của woocomerce hãy vô 😂

C:\xampp\htdocs\reset\wp-content\plugins\woocommerce\includes\admin\class-wc-admin-dashboard.php tìm theo wp_add_dashboard_widget

👉 Muốn tìm class add daskboad của wordpress hãy vô😋

C:\xampp\htdocs\reset\wp-admin\includes\dashboard.php tìm theo wp_add_dashboard_widget

👉 Muốn The example below removes all Dashboard Widgets: https://developer.wordpress.org/apis/handbook/dashboard-widgets

function wporg_remove_all_dashboard_metaboxes() {
    // Remove Welcome panel
    remove_action( 'welcome_panel', 'wp_welcome_panel' );
    // Remove the rest of the dashboard widgets
    remove_meta_box( 'dashboard_primary', 'dashboard', 'side' );
    remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );
    remove_meta_box( 'health_check_status', 'dashboard', 'normal' );
    remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' );
    remove_meta_box( 'dashboard_activity', 'dashboard', 'normal');
}
add_action( 'wp_dashboard_setup', 'wporg_remove_all_dashboard_metaboxes' );

Last updated