├── LICENSE ├── README.md ├── clean-admin-dashboard.php └── readme.txt /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Andrew Norcross 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Clean Admin Dashboard 2 | ===================== 3 | 4 | **Contributors:** norcross 5 | 6 | **Donate link:** https://andrewnorcross.com/donate 7 | 8 | **Tags:** dashboard 9 | 10 | **Requires at least:** 4.0 11 | 12 | **Tested up to:** 4.6 13 | 14 | **Stable tag:** 0.0.1 15 | 16 | 17 | ### Description ### 18 | 19 | Remove all the things from the admin dashboard in one fell swoop. No fuss, no mess. Just nothing. 20 | 21 | 22 | ### Installation ### 23 | 24 | This section describes how to install the plugin and get it working. 25 | 26 | 1. Upload `clean-admin-dashboard` to the `/wp-content/plugins/` directory. 27 | 1. Activate the plugin through the 'Plugins' menu in WordPress. 28 | 1. That's it. 29 | 30 | ### Frequently Asked Questions ### 31 | 32 | #### Why do I need this? #### 33 | 34 | Because you don't like stuff on the dashboard. 35 | 36 | 37 | ### Screenshots ### 38 | 39 | 40 | ### Changelog ### 41 | 42 | **0.0.1** 43 | * Initial release 44 | 45 | 46 | ### Upgrade Notice ### 47 | 48 | **0.0.1** 49 | Initial release 50 | -------------------------------------------------------------------------------- /clean-admin-dashboard.php: -------------------------------------------------------------------------------- 1 | 34 | 35 | 38 | 39 |