{"id":3711,"date":"2017-07-06T13:50:00","date_gmt":"2017-07-06T13:50:00","guid":{"rendered":"https:\/\/purelysupp.com\/wordpress\/?p=3711"},"modified":"2022-10-17T15:23:22","modified_gmt":"2022-10-17T15:23:22","slug":"add-remove-reorder-dashboard-widgets-by-the-users-role","status":"publish","type":"post","link":"https:\/\/purelysupp.com\/wordpress\/code-snippets\/add-remove-reorder-dashboard-widgets-by-the-users-role\/","title":{"rendered":"Add, Remove &#038; Reorder Dashboard Widgets By the User&#8217;s Role"},"content":{"rendered":"\n<p>Modify then add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to add, remove &amp; reorder dashboard widgets by the User&#8217;s role<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function tidy_dashboard()\n{\n  global $wp_meta_boxes, $current_user;\n \n  \/\/ remove incoming links info for authors or editors\n  if(in_array('author', $current_user->roles) || in_array('editor', $current_user->roles))\n  {\n    unset($wp_meta_boxes&#91;'dashboard']&#91;'normal ']&#91;'core']&#91;'dashboard_incoming_links']);\n  }\n   \n  \/\/ remove the plugins info and news feeds for everyone\n  unset($wp_meta_boxes&#91;'dashboard']&#91;'normal']&#91;'core']&#91;'dashboard_plugins']);\n  unset($wp_meta_boxes&#91;'dashboard']&#91;'side']&#91;'core']&#91;'dashboard_primary']);\n  unset($wp_meta_boxes&#91;'dashboard']&#91;'side']&#91;'core']&#91;'dashboard_secondary']);\n \n}\n\/\/add our function to the dashboard setup hook\nadd_action('wp_dashboard_setup', 'tidy_dashboard');<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\n\/** List of each of the current default dashboard widgets with unset code: *\/\n\n\/\/Right Now - Comments, Posts, Pages at a glance\nunset($wp_meta_boxes&#91;'dashboard']&#91;'normal']&#91;'core']&#91;'dashboard_right_now']);\n\/\/Recent Comments\nunset($wp_meta_boxes&#91;'dashboard']&#91;'normal']&#91;'core']&#91;'dashboard_recent_comments']);\n\/\/Incoming Links\nunset($wp_meta_boxes&#91;'dashboard']&#91;'normal']&#91;'core']&#91;'dashboard_incoming_links']);\n\/\/Plugins - Popular, New and Recently updated WordPress Plugins\nunset($wp_meta_boxes&#91;'dashboard']&#91;'normal']&#91;'core']&#91;'dashboard_plugins']);\n\n\/\/Wordpress Development Blog Feed\nunset($wp_meta_boxes&#91;'dashboard']&#91;'side']&#91;'core']&#91;'dashboard_primary']);\n\/\/Other WordPress News Feed\nunset($wp_meta_boxes&#91;'dashboard']&#91;'side']&#91;'core']&#91;'dashboard_secondary']);\n\/\/Quick Press Form\nunset($wp_meta_boxes&#91;'dashboard']&#91;'side']&#91;'core']&#91;'dashboard_quick_press']);\n\/\/Recent Drafts List\nunset($wp_meta_boxes&#91;'dashboard']&#91;'side']&#91;'core']&#91;'dashboard_recent_drafts']);<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Modify then add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to add, remove &amp; reorder dashboard widgets by the User&#8217;s role<\/p>\n","protected":false},"author":1,"featured_media":3806,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","iawp_total_views":2,"wds_primary_category":56,"footnotes":""},"categories":[56,86],"tags":[110,83,246,84],"class_list":{"0":"post-3711","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-code-snippets","8":"category-user-interface","9":"tag-code","10":"tag-layout","11":"tag-user-interface","12":"tag-wp-core","13":"entry"},"featured_image_src":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/matrix-source-code-600x400.jpg","featured_image_src_square":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/matrix-source-code-600x600.jpg","author_info":{"display_name":"Jack Alltrade","author_link":"https:\/\/purelysupp.com\/wordpress\/author\/jacka11trade\/"},"_links":{"self":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3711","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/comments?post=3711"}],"version-history":[{"count":2,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3711\/revisions"}],"predecessor-version":[{"id":10745,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3711\/revisions\/10745"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media\/3806"}],"wp:attachment":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3711"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3711"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3711"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}