Declutter WordPress Dashboard to focus on the important things. This tutorial will guide you on how to achieve a clean and organized WordPress dashboard by using a simple yet powerful tool – Code Snippets. This approach presented by Imran from Web Squadron is not only efficient but also user-friendly, eliminating the need for a child theme and providing a rollback feature for safety. By the end of this tutorial, you will have a streamlined WordPress dashboard, enhancing your productivity and user experience.
Steps to Declutter WordPress Dashboard
- Install the Code Snippets Plugin
Navigate to your WordPress dashboard, go to ‘Plugins’, click ‘Add New’, and search for ‘Code Snippets’. Install and activate the plugin. - Add a New Snippet
Once the plugin is activated, go back to your WordPress dashboard, navigate to ‘Snippets’, and click ‘Add New’. Give your new snippet a title. - Copy the Code
Copy the relevant code below.function remove_dashboard_widgets() { remove_action( 'welcome_panel', 'wp_welcome_panel' ); remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_activity', 'dashboard', 'normal' ); remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' ); remove_meta_box( 'dashboard_primary', 'dashboard', 'side' ); remove_meta_box( 'dashboard_site_health', 'dashboard', 'normal' ); remove_meta_box( 'e-dashboard-overview', 'dashboard', 'normal' ); } add_action( 'wp_dashboard_setup', 'remove_dashboard_widgets' );
Source: Code Snippets
- Paste the Code
Go back to your WordPress dashboard, paste the copied code into your new snippet. If you don’t have Elementor installed, remove the line that says ‘e_dashboard_overview’. - Save and Activate
Click ‘Save Changes’ and then ‘Activate’. Your WordPress dashboard should now be decluttered.
Why you should Clean up WordPress
Understanding how to declutter your WordPress dashboard can significantly enhance your productivity and user experience. A clean and organized dashboard allows you to focus on what truly matters, reducing distractions and improving efficiency. Furthermore, the skills acquired from this tutorial can be applied to other aspects of WordPress management, making it a valuable addition to your WordPress knowledge base.
Use Cases for this Tutorial
Declutter WordPress dashboard helps particularly those WordPress users who manage multiple plugins and features. By decluttering the dashboard, users can easily navigate and manage their WordPress site. It’s also beneficial for web developers who want to provide a clean and user-friendly dashboard for their clients.
Common Issues
- Code Not Working
Ensure you’ve copied the code correctly and pasted it into the right place. Also, check if the Code Snippets plugin is activated. - Elementor Line Error
If you don’t have Elementor installed, remember to remove the line that says ‘e_dashboard_overview’ from the code.