-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
27 lines (25 loc) · 1.03 KB
/
index.php
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
<?php
/*
Plugin Name: Remove Dashboard Boxes
Plugin URI: http://wordpress.org/#
Description: Disables dashboard Boxes.
Author: Aria Stewart
Version: 1.0
Author URI: http://blumenthals.com/
*/
add_action('wp_network_dashboard_setup', 'bl_remove_network_dashboard_widgets', 100);
add_action('wp_user_dashboard_setup', 'bl_remove_dashboard_widgets', 100);
add_action('wp_dashboard_setup', 'bl_remove_dashboard_widgets', 100);
function bl_remove_dashboard_widgets() {
remove_meta_box('dashboard_plugins', 'dashboard', 'normal');
remove_meta_box('dashboard_quick_press', 'dashboard', 'normal');
remove_meta_box('dashboard_primary', 'dashboard', 'side');
remove_meta_box('dashboard_secondary', 'dashboard', 'side');
}
function bl_remove_network_dashboard_widgets() {
remove_meta_box('dashboard_plugins', 'dashboard-network', 'normal');
remove_meta_box('dashboard_quick_press', 'dashboard-network', 'normal');
remove_meta_box('dashboard_primary', 'dashboard-network', 'side');
remove_meta_box('dashboard_secondary', 'dashboard-network', 'side');
}
?>