[Plugin: Broken Link Checker] How to unset from admin dashboard widgets
-
Hi – i’m trying to clean up the backend for Admin Dashboard widgets so that only the admin sees the various meta boxes but no matter what i’ve tried, Broken Link Checker widget will not go away (see example code below) … note i’m using WordPress 3.1 MultiSite Network and working with this code in the MU plugins folder … not sure that matters … i also tried Adminimize plugin but that did not work on the widget either … thanks in advance for any pointers … cordially, chuck scott
/* Turn off Dashboard Widgets */ function remove_dashboard_widgets() { global $wp_meta_boxes; unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); unset($wp_meta_boxes['dashboard']['normal']['core']['blc_dashboard_widget']); } if(is_admin()){ add_action('wp_dashboard_setup', 'remove_dashboard_widgets' ); }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Plugin: Broken Link Checker] How to unset from admin dashboard widgets’ is closed to new replies.