24

How to Remove WordPress Dashboard Widgets

Powered by WPCodeBox

This WordPress snippet helps users effectively remove unwanted widgets from their WordPress Dashboard, streamlining their administrative interface.


<?php

function custom_remove_dashboard_widgets() 
{
    global $wp_meta_boxes;
    	
    unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
    unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
}

add_action('wp_dashboard_setup', 'custom_remove_dashboard_widgets');

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.