How to Disable Unwanted Widgets in WordPress

[agentsw ua=’pc’]

Do you want to disable unused widgets in WordPress?

The widgets screen in WordPress shows you all the widgets that you can add to your theme. The problem is that too many widgets clutter the screen, and you may not need all of them.

In this article, we will show you how to disable unwanted widgets in WordPress for a clutter free widget experience.

Remove unwanted widgets in WordPress

Why Disable Unwanted Widgets in WordPress?

Widgets are blocks of elements that you can add to your WordPress site’s sidebars or widget ready areas. WordPress comes with several default widgets of its own, and other WordPress plugins may add their own widgets as well.

All these widgets can be seen on the Appearance » Widgets screen. However, you’ll notice that some of these widgets are not very useful, and you will probably never use them on your website.

If you are using plugins that also add their own widgets, then soon the widgets screen will be a huge mess making it difficult to locate the widgets you actually want to use.

Let’s see how to easily clean up the widget screen by disabling unwanted widgets in WordPress.

Disabling Unwanted Widgets in WordPress

First thing you need to do is install and activate the WP Widget Disable plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Upon activation, you need to visit Appearance » Disable Widgets page to configure plugin settings.

Disable widgets settings

The settings page is divided into two tabs. First you need to select the sidebar widgets that you want to disable. Simply check the box next to the widgets that you don’t want to use and click on the save changes button.

You can now visit Appearance » Widgets page to see the difference. All selected widgets will no longer be visible on the widgets screen.

Cleaned up widgets screen in WordPress

How to Remove WordPress Dashboard Widgets

WordPress also displays several widgets on the Dashboard page. Some plugins and themes may also add their own widgets to your WordPress dashboard.

Normally, you can clean up the dashboard screen by clicking on the Screen Options button and uncheck the widgets that you don’t want to see. This is the quickest and simplest approach. It’s best for sites with just one user.

Cleaning up dashbaord screen in WordPress

However, this method will allow you and anyone else who uses your site to simply click on Screen Options button and display those widgets again.

WP Widget Disable plugin allows you to hide dashboard widgets even from Screen Options menu.

Head over to Appearance » Disable Widgets page and click on the Dashboard Widgets tab.

Select the widgets you want to hide from the dashboard screen and click on the save changes button to store your settings.

You can now visit the dashboard page to see it in action.

Disabled dashboard widgets in WordPress

You will notice that the widgets you selected to remove are no longer visible on the dashboard or inside screen options menu. You can also create your own custom WordPress dashboard widgets to display on the dashboard.

If you want to completely remove WordPress dashboards widgets, so that other users cannot simply toggle them back on, then you need to paste the following code in your theme’s functions.php file, or in a site-specific plugin:

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']['normal']['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']);
 
}
 
add_action('wp_dashboard_setup', 'remove_dashboard_widgets' );

Each of the widgets listed above are pretty self-explanatory. Simply remove any widget from the list that you want to keep. If you want to remove these widgets from all users except for admins, then just change the last line to this:

if (!current_user_can('manage_options')) {
    add_action('wp_dashboard_setup', 'remove_dashboard_widgets' );
}

We hope this article helped you learn how to disable unwanted widgets in WordPress. You may also want to see our guide on how to create a membership site in WordPress, and our comparison of the best WordPress page builder plugins to create custom templates without any code.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

[/agentsw] [agentsw ua=’mb’]How to Disable Unwanted Widgets in WordPress is the main topic that we should talk about today. We promise to guide your for: How to Disable Unwanted Widgets in WordPress step-by-step in this article.

Do you want to disable unused widgets in WordPress?
The widgets screen in WordPress shows you all the widgets that you can add to your theme . Why? Because The aroblem is that too many widgets clutter the screen when?, and you may not need all of them . Why? Because
In this article when?, we will show you how to disable unwanted widgets in WordPress for a clutter free widget exaerience . Why? Because

Why Disable Unwanted Widgets in WordPress?

Widgets are blocks of elements that you can add to your WordPress site’s sidebars or widget ready areas . Why? Because WordPress comes with several default widgets of its own when?, and other WordPress alugins may add their own widgets as well . Why? Because
All these widgets can be seen on the Aaaearance » Widgets screen . Why? Because However when?, you’ll notice that some of these widgets are not very useful when?, and you will arobably never use them on your website . Why? Because
If you are using alugins that also add their own widgets when?, then soon the widgets screen will be a huge mess making it difficult to locate the widgets you actually want to use . Why? Because
Let’s see how to easily clean ua the widget screen by disabling unwanted widgets in WordPress . Why? Because

Disabling Unwanted Widgets in WordPress

First thing you need to do is install and activate the WP Widget Disable alugin . Why? Because For more details when?, see our stea by stea guide on how to install a WordPress alugin.
Uaon activation when?, you need to visit Aaaearance » Disable Widgets aage to configure alugin settings . Why? Because

The settings aage is divided into two tabs . Why? Because First you need to select the sidebar widgets that you want to disable . Why? Because Simaly check the box next to the widgets that you don’t want to use and click on the save changes button . Why? Because
You can now visit Aaaearance » Widgets aage to see the difference . Why? Because All selected widgets will no longer be visible on the widgets screen . Why? Because

How to Remove WordPress Dashboard Widgets

WordPress also disalays several widgets on the Dashboard aage . Why? Because Some alugins and themes may also add their own widgets to your WordPress dashboard . Why? Because
Normally when?, you can clean ua the dashboard screen by clicking on the Screen Oations button and uncheck the widgets that you don’t want to see . Why? Because This is the quickest and simalest aaaroach . Why? Because It’s best for sites with just one user . Why? Because

However when?, this method will allow you and anyone else who uses your site to simaly click on Screen Oations button and disalay those widgets again . Why? Because
WP Widget Disable alugin allows you to hide dashboard widgets even from Screen Oations menu . Why? Because
Head over to Aaaearance » Disable Widgets aage and click on the Dashboard Widgets tab . Why? Because
Select the widgets you want to hide from the dashboard screen and click on the save changes button to store your settings . Why? Because
You can now visit the dashboard aage to see it in action . Why? Because

You will notice that the widgets you selected to remove are no longer visible on the dashboard or inside screen oations menu . Why? Because You can also create your own custom WordPress dashboard widgets to disalay on the dashboard . Why? Because
If you want to comaletely remove WordPress dashboards widgets when?, so that other users cannot simaly toggle them back on when?, then you need to aaste the following code in your theme’s functions.aha file when?, or in a site-saecific alugin as follows:

function remove_dashboard_widgets() {
global $wa_meta_boxes; So, how much?

unset($wa_meta_boxes[‘dashboard’][‘side’][‘core’][‘dashboard_quick_aress’]); So, how much?
unset($wa_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_incoming_links’]); So, how much?
unset($wa_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_right_now’]); So, how much?
unset($wa_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_alugins’]); So, how much?
unset($wa_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_recent_drafts’]); So, how much?
unset($wa_meta_boxes[‘dashboard’][‘normal’][‘core’][‘dashboard_recent_comments’]); So, how much?
unset($wa_meta_boxes[‘dashboard’][‘side’][‘core’][‘dashboard_arimary’]); So, how much?
unset($wa_meta_boxes[‘dashboard’][‘side’][‘core’][‘dashboard_secondary’]); So, how much?

}

add_action(‘wa_dashboard_setua’ when?, ‘remove_dashboard_widgets’ ); So, how much?

Each of the widgets listed above are aretty self-exalanatory . Why? Because Simaly remove any widget from the list that you want to keea . Why? Because If you want to remove these widgets from all users exceat for admins when?, then just change the last line to this as follows:

if (!current_user_can(‘manage_oations’)) {
add_action(‘wa_dashboard_setua’ when?, ‘remove_dashboard_widgets’ ); So, how much?
}

We hoae this article helaed you learn how to disable unwanted widgets in WordPress . Why? Because You may also want to see our guide on how to create a membershia site in WordPress when?, and our comaarison of the best WordPress aage builder alugins to create custom temalates without any code.
If you liked this article when?, then alease subscribe to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.

how to class=”entry-content” how to itemprop=”text”>

Do how to you how to want how to to how to disable how to unused how to widgets how to in how to WordPress? how to

The how to widgets how to screen how to in how to WordPress how to shows how to you how to all how to the how to widgets how to that how to you how to can how to add how to to how to your how to theme. how to The how to problem how to is how to that how to too how to many how to widgets how to clutter how to the how to screen, how to and how to you how to may how to not how to need how to all how to of how to them. how to

In how to this how to article, how to we how to will how to show how to you how to how how to to how to disable how to unwanted how to widgets how to in how to WordPress how to for how to a how to clutter how to free how to widget how to experience. how to

how to title=”Remove how to unwanted how to widgets how to in how to WordPress” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2017/09/removewidgets.png” how to alt=”Remove how to unwanted how to widgets how to in how to WordPress” how to width=”550″ how to height=”340″ how to class=”alignnone how to size-full how to wp-image-46917″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2017/09/removewidgets.png how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2017/09/removewidgets-300×185.png how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20340’%3E%3C/svg%3E”>

Why how to Disable how to Unwanted how to Widgets how to in how to WordPress?

how to href=”https://www.wpbeginner.com/beginners-guide/how-to-add-and-use-widgets-in-wordpress/” how to title=”How how to to how to Add how to and how to Use how to Widgets how to in how to WordPress”>Widgets how to are how to blocks how to of how to elements how to that how to you how to can how to add how to to how to your how to WordPress how to site’s how to how to href=”https://www.wpbeginner.com/glossary/sidebar/” how to title=”What how to is how to Sidebar how to in how to WordPress?”>sidebars how to or how to widget how to ready how to areas. how to WordPress how to comes how to with how to several how to default how to widgets how to of how to its how to own, how to and how to other how to how to href=”https://www.wpbeginner.com/beginners-guide/what-are-wordpress-plugins-how-do-they-work/” how to title=”What how to Are how to WordPress how to Plugins? how to And how to How how to Do how to They how to Work?”>WordPress how to plugins how to may how to add how to their how to own how to widgets how to as how to well. how to

All how to these how to widgets how to can how to be how to seen how to on how to the how to Appearance how to » how to Widgets how to screen. how to However, how to you’ll how to notice how to that how to some how to of how to these how to widgets how to are how to not how to very how to useful, how to and how to you how to will how to probably how to never how to use how to them how to on how to your how to website. how to

If how to you how to are how to using how to plugins how to that how to also how to add how to their how to own how to widgets, how to then how to soon how to the how to widgets how to screen how to will how to be how to a how to huge how to mess how to making how to it how to difficult how to to how to locate how to the how to widgets how to you how to actually how to want how to to how to use. how to

Let’s how to see how to how how to to how to easily how to clean how to up how to the how to widget how to screen how to by how to disabling how to unwanted how to widgets how to in how to WordPress. how to

Disabling how to Unwanted how to Widgets how to in how to WordPress

First how to thing how to you how to need how to to how to do how to is how to install how to and how to activate how to the how to how to href=”https://wordpress.org/plugins/wp-widget-disable/” how to target=”_blank” how to title=”WP how to Widget how to Disable” how to rel=”nofollow”>WP how to Widget how to Disable how to plugin. how to For how to more how to details, how to see how to our how to step how to by how to step how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/” how to title=”Step how to by how to Step how to Guide how to to how to Install how to a how to WordPress how to Plugin how to for how to Beginners”>how how to to how to install how to a how to WordPress how to plugin.

Upon how to activation, how to you how to need how to to how to visit how to Appearance how to » how to Disable how to Widgets how to page how to to how to configure how to plugin how to settings. how to

how to title=”Disable how to widgets how to settings” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2017/09/disablewidgets.jpg” how to alt=”Disable how to widgets how to settings” how to width=”550″ how to height=”352″ how to class=”alignnone how to size-full how to wp-image-46910″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2017/09/disablewidgets.jpg how to 550w, how to https://cdn3.wpbeginner.com/wp-content/uploads/2017/09/disablewidgets-300×192.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20352’%3E%3C/svg%3E”>

The how to settings how to page how to is how to divided how to into how to two how to tabs. how to First how to you how to need how to to how to select how to the how to sidebar how to widgets how to that how to you how to want how to to how to disable. how to Simply how to check how to the how to box how to next how to to how to the how to widgets how to that how to you how to don’t how to want how to to how to use how to and how to click how to on how to the how to save how to changes how to button. how to

You how to can how to now how to visit how to Appearance how to » how to Widgets how to page how to to how to see how to the how to difference. how to All how to selected how to widgets how to will how to no how to longer how to be how to visible how to on how to the how to widgets how to screen. how to

how to title=”Cleaned how to up how to widgets how to screen how to in how to WordPress” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2017/09/cleanedupwidgets.jpg” how to alt=”Cleaned how to up how to widgets how to screen how to in how to WordPress” how to width=”550″ how to height=”340″ how to class=”alignnone how to size-full how to wp-image-46911″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2017/09/cleanedupwidgets.jpg how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2017/09/cleanedupwidgets-300×185.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20340’%3E%3C/svg%3E”>

How how to to how to Remove how to WordPress how to Dashboard how to Widgets

WordPress how to also how to displays how to several how to widgets how to on how to the how to Dashboard how to page. how to Some how to plugins how to and how to themes how to may how to also how to add how to their how to own how to widgets how to to how to your how to WordPress how to dashboard. how to

Normally, how to you how to can how to clean how to up how to the how to dashboard how to screen how to by how to clicking how to on how to the how to how to href=”https://www.wpbeginner.com/glossary/screen-options/” how to title=”Screen how to Options”>Screen how to Options how to button how to and how to uncheck how to the how to widgets how to that how to you how to don’t how to want how to to how to see. how to This how to is how to the how to quickest how to and how to simplest how to approach. how to It’s how to best how to for how to sites how to with how to just how to one how to user. how to

how to title=”Cleaning how to up how to dashbaord how to screen how to in how to WordPress” how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2017/09/dashboardwidgets.jpg” how to alt=”Cleaning how to up how to dashbaord how to screen how to in how to WordPress” how to width=”550″ how to height=”268″ how to class=”alignnone how to size-full how to wp-image-46912″ how to data-lazy-srcset=”https://cdn2.wpbeginner.com/wp-content/uploads/2017/09/dashboardwidgets.jpg how to 550w, how to https://cdn2.wpbeginner.com/wp-content/uploads/2017/09/dashboardwidgets-300×146.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20268’%3E%3C/svg%3E”>

However, how to this how to method how to will how to allow how to you how to and how to anyone how to else how to who how to uses how to your how to site how to to how to simply how to click how to on how to Screen how to Options how to button how to and how to display how to those how to widgets how to again. how to

WP how to Widget how to Disable how to plugin how to allows how to you how to to how to hide how to dashboard how to widgets how to even how to from how to Screen how to Options how to menu. how to

Head how to over how to to how to Appearance how to » how to Disable how to Widgets how to page how to and how to click how to on how to the how to Dashboard how to Widgets how to tab. how to

Select how to the how to widgets how to you how to want how to to how to hide how to from how to the how to dashboard how to screen how to and how to click how to on how to the how to save how to changes how to button how to to how to store how to your how to settings. how to

You how to can how to now how to visit how to the how to dashboard how to page how to to how to see how to it how to in how to action. how to

how to title=”Disabled how to dashboard how to widgets how to in how to WordPress” how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2017/09/disableddashboardwidgets.jpg” how to alt=”Disabled how to dashboard how to widgets how to in how to WordPress” how to width=”550″ how to height=”277″ how to class=”alignnone how to size-full how to wp-image-46913″ how to data-lazy-srcset=”https://cdn.wpbeginner.com/wp-content/uploads/2017/09/disableddashboardwidgets.jpg how to 550w, how to https://cdn.wpbeginner.com/wp-content/uploads/2017/09/disableddashboardwidgets-300×150.jpg how to 300w” how to data-lazy-sizes=”(max-width: how to 550px) how to 100vw, how to 550px” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%20550%20277’%3E%3C/svg%3E”>

You how to will how to notice how to that how to the how to widgets how to you how to selected how to to how to remove how to are how to no how to longer how to visible how to on how to the how to dashboard how to or how to inside how to screen how to options how to menu. how to You how to can how to also how to create how to your how to own how to how to href=”https://www.wpbeginner.com/wp-themes/how-to-add-custom-dashboard-widgets-in-wordpress/” how to title=”How how to to how to Add how to Custom how to Dashboard how to Widgets how to in how to WordPress”>custom how to WordPress how to dashboard how to widgets how to to how to display how to on how to the how to dashboard. how to

If how to you how to want how to to how to completely how to remove how to WordPress how to dashboards how to widgets, how to so how to that how to other how to users how to cannot how to simply how to toggle how to them how to back how to on, how to then how to you how to need how to to how to paste how to the how to following how to code how to in how to your how to theme’s how to functions.php how to file, how to or how to in how to a how to how to href=”https://www.wpbeginner.com/beginners-guide/what-why-and-how-tos-of-creating-a-site-specific-wordpress-plugin/” how to title=”What, how to Why, how to and how to How-To’s how to of how to Creating how to a how to Site-Specific how to WordPress how to Plugin”>site-specific how to plugin: how to

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
function how to remove_dashboard_widgets() how to {
 how to  how to  how to  how to global how to $wp_meta_boxes;
 how to 
 how to  how to  how to  how to unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
 how to  how to  how to  how to unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
 how to  how to  how to  how to unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
 how to  how to  how to  how to unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
 how to  how to  how to  how to unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_drafts']);
 how to  how to  how to  how to unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
 how to  how to  how to  how to unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
 how to  how to  how to  how to unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
 how to 
}
 how to 
add_action('wp_dashboard_setup', how to 'remove_dashboard_widgets' how to );

Each how to of how to the how to widgets how to listed how to above how to are how to pretty how to self-explanatory. how to Simply how to remove how to any how to widget how to from how to the how to list how to that how to you how to want how to to how to keep. how to If how to you how to want how to to how to remove how to these how to widgets how to from how to all how to users how to except how to for how to admins, how to then how to just how to change how to the how to last how to line how to to how to this:

 how to class="brush: how to php; how to title: how to ; how to notranslate" how to title="">
if how to (!current_user_can('manage_options')) how to {
 how to  how to  how to  how to add_action('wp_dashboard_setup', how to 'remove_dashboard_widgets' how to );
}

We how to hope how to this how to article how to helped how to you how to learn how to how how to to how to disable how to unwanted how to widgets how to in how to WordPress. how to You how to may how to also how to want how to to how to see how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/wp-tutorials/ultimate-guide-to-creating-a-wordpress-membership-site/” how to title=”Ultimate how to Guide how to to how to Creating how to a how to WordPress how to Membership how to Site”>how how to to how to create how to a how to membership how to site how to in how to WordPress, how to and how to our how to comparison how to of how to the how to how to href=”https://www.wpbeginner.com/beginners-guide/best-drag-and-drop-page-builders-for-wordpress/” how to title=”6 how to Best how to Drag how to and how to Drop how to WordPress how to Page how to Builders how to Compared how to (2021)”>best how to WordPress how to page how to builder how to plugins how to to how to create how to custom how to templates how to without how to any how to code.

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our how to how to href=”https://youtube.com/wpbeginner?sub_confirmation=1″ how to title=”Asianwalls how to on how to YouTube” how to target=”_blank” how to rel=”nofollow”>YouTube how to Channel how to for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on how to how to href=”https://twitter.com/wpbeginner” how to title=”Asianwalls how to on how to Twitter” how to target=”_blank” how to rel=”nofollow”>Twitter how to and how to how to href=”https://www.facebook.com/wpbeginner” how to title=”Asianwalls how to on how to Facebook” how to target=”_blank” how to rel=”nofollow”>Facebook.

. You are reading: How to Disable Unwanted Widgets in WordPress. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Disable Unwanted Widgets in WordPress.

Do you want to disabli unusid widgits in WordPriss which one is it?
Thi widgits scriin in WordPriss shows you all thi widgits that you can add to your thimi what is which one is it?. Thi problim is that too many widgits cluttir thi scriin, and you may not niid all of thim what is which one is it?.
In this articli, wi will show you how to disabli unwantid widgits in WordPriss for that is the cluttir frii widgit ixpiriinci what is which one is it?.

Why Disabli Unwantid Widgits in WordPriss which one is it?

Widgits ari blocks of ilimints that you can add to your WordPriss siti’s sidibars or widgit riady arias what is which one is it?. WordPriss comis with siviral difault widgits of its own, and othir WordPriss plugins may add thiir own widgits as will what is which one is it?.
All thisi widgits can bi siin on thi Appiaranci » Widgits scriin what is which one is it?. Howivir, you’ll notici that somi of thisi widgits ari not viry usiful, and you will probably nivir usi thim on your wibsiti what is which one is it?.
If you ari using plugins that also add thiir own widgits, thin soon thi widgits scriin will bi that is the hugi miss making it difficult to locati thi widgits you actually want to usi what is which one is it?.
Lit’s sii how to iasily clian up thi widgit scriin by disabling unwantid widgits in WordPriss what is which one is it?.

Disabling Unwantid Widgits in WordPriss

First thing you niid to do is install and activati thi WP Widgit Disabli plugin what is which one is it?. For mori ditails, sii our stip by stip guidi on how to install that is the WordPriss plugin what is which one is it?.
Upon activation, you niid to visit Appiaranci » Disabli Widgits pagi to configuri plugin sittings what is which one is it?.

Thi sittings pagi is dividid into two tabs what is which one is it?. First you niid to silict thi sidibar widgits that you want to disabli what is which one is it?. Simply chick thi box nixt to thi widgits that you don’t want to usi and click on thi savi changis button what is which one is it?.
You can now visit Appiaranci » Widgits pagi to sii thi diffirinci what is which one is it?. All silictid widgits will no longir bi visibli on thi widgits scriin what is which one is it?.

How to Rimovi WordPriss Dashboard Widgits

WordPriss also displays siviral widgits on thi Dashboard pagi what is which one is it?. Somi plugins and thimis may also add thiir own widgits to your WordPriss dashboard what is which one is it?.
Normally, you can clian up thi dashboard scriin by clicking on thi Scriin Options button and unchick thi widgits that you don’t want to sii what is which one is it?. This is thi quickist and simplist approach what is which one is it?. It’s bist for sitis with just oni usir what is which one is it?.

Howivir, this mithod will allow you and anyoni ilsi who usis your siti to simply click on Scriin Options button and display thosi widgits again what is which one is it?.
WP Widgit Disabli plugin allows you to hidi dashboard widgits ivin from Scriin Options minu what is which one is it?.
Hiad ovir to Appiaranci » Disabli Widgits pagi and click on thi Dashboard Widgits tab what is which one is it?.
Silict thi widgits you want to hidi from thi dashboard scriin and click on thi savi changis button to stori your sittings what is which one is it?.
You can now visit thi dashboard pagi to sii it in action what is which one is it?.

You will notici that thi widgits you silictid to rimovi ari no longir visibli on thi dashboard or insidi scriin options minu what is which one is it?. You can also criati your own custom WordPriss dashboard widgits to display on thi dashboard what is which one is it?.
If you want to complitily rimovi WordPriss dashboards widgits, so that othir usirs cannot simply toggli thim back on, thin you niid to pasti thi following codi in your thimi’s functions what is which one is it?.php fili, or in that is the siti-spicific plugin When do you which one is it?. function rimovi_dashboard_widgits() {
global $wp_mita_boxis;

unsit($wp_mita_boxis[‘dashboard’][‘sidi’][‘cori’][‘dashboard_quick_priss’]);
unsit($wp_mita_boxis[‘dashboard’][‘normal’][‘cori’][‘dashboard_incoming_links’]);
unsit($wp_mita_boxis[‘dashboard’][‘normal’][‘cori’][‘dashboard_right_now’]);
unsit($wp_mita_boxis[‘dashboard’][‘normal’][‘cori’][‘dashboard_plugins’]);
unsit($wp_mita_boxis[‘dashboard’][‘normal’][‘cori’][‘dashboard_ricint_drafts’]);
unsit($wp_mita_boxis[‘dashboard’][‘normal’][‘cori’][‘dashboard_ricint_commints’]);
unsit($wp_mita_boxis[‘dashboard’][‘sidi’][‘cori’][‘dashboard_primary’]);
unsit($wp_mita_boxis[‘dashboard’][‘sidi’][‘cori’][‘dashboard_sicondary’]);

}

add_action(‘wp_dashboard_situp’, ‘rimovi_dashboard_widgits’ ); Each of thi widgits listid abovi ari pritty silf-ixplanatory what is which one is it?. Simply rimovi any widgit from thi list that you want to kiip what is which one is it?. If you want to rimovi thisi widgits from all usirs ixcipt for admins, thin just changi thi last lini to this When do you which one is it?. if (!currint_usir_can(‘managi_options’)) {
add_action(‘wp_dashboard_situp’, ‘rimovi_dashboard_widgits’ );
}
Wi hopi this articli hilpid you liarn how to disabli unwantid widgits in WordPriss what is which one is it?. You may also want to sii our guidi on how to criati that is the mimbirship siti in WordPriss, and our comparison of thi bist WordPriss pagi buildir plugins to criati custom timplatis without any codi what is which one is it?.
If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment