{"id":3715,"date":"2016-12-06T13:51:00","date_gmt":"2016-12-06T13:51:00","guid":{"rendered":"https:\/\/purelysupp.com\/wordpress\/?p=3715"},"modified":"2022-10-17T14:30:58","modified_gmt":"2022-10-17T14:30:58","slug":"remove-default-widgets-from-the-wordpress-dashboard","status":"publish","type":"post","link":"https:\/\/purelysupp.com\/wordpress\/code-snippets\/remove-default-widgets-from-the-wordpress-dashboard\/","title":{"rendered":"Remove Default Widgets from the WordPress Dashboard"},"content":{"rendered":"\n<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to remove the default widgets from the WordPress dashboard.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ Create the function to use in the action hook\nfunction example_remove_dashboard_widgets() {\n\t\/\/ Globalize the metaboxes array, this holds all the widgets for wp-admin\n \n\tglobal $wp_meta_boxes;\n \n\t\/\/ Remove the incomming links widget\n\tunset($wp_meta_boxes&#91;'dashboard']&#91;'normal']&#91;'core']&#91;'dashboard_incoming_links']);\t\n \n\t\/\/ Remove right now\n\tunset($wp_meta_boxes&#91;'dashboard']&#91;'normal']&#91;'core']&#91;'dashboard_right_now']);\n\tunset($wp_meta_boxes&#91;'dashboard']&#91;'side']&#91;'core']&#91;'dashboard_primary']);\n\tunset($wp_meta_boxes&#91;'dashboard']&#91;'side']&#91;'core']&#91;'dashboard_secondary']);\n}\n \n\/\/ Hoook into the 'wp_dashboard_setup' action to register our function\nadd_action('wp_dashboard_setup', 'example_remove_dashboard_widgets' );<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to remove the default widgets from the WordPress dashboard.<\/p>\n","protected":false},"author":1,"featured_media":3547,"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,88],"tags":[110,83,84],"class_list":{"0":"post-3715","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-code-snippets","8":"category-wordpress-core","9":"tag-code","10":"tag-layout","11":"tag-wp-core","12":"entry"},"featured_image_src":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2018\/09\/code-snippits-600x400.jpg","featured_image_src_square":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2018\/09\/code-snippits-600x515.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\/3715","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=3715"}],"version-history":[{"count":2,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3715\/revisions"}],"predecessor-version":[{"id":10736,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3715\/revisions\/10736"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media\/3547"}],"wp:attachment":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3715"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3715"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3715"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}