https://github.com/micc83/WpDevTool
Development tools for WordPress
https://github.com/micc83/WpDevTool
Last synced: about 1 year ago
JSON representation
Development tools for WordPress
- Host: GitHub
- URL: https://github.com/micc83/WpDevTool
- Owner: micc83
- Created: 2013-01-10T20:07:54.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-07-03T07:11:46.000Z (almost 13 years ago)
- Last Synced: 2025-03-11T06:57:15.206Z (over 1 year ago)
- Language: PHP
- Homepage: http://codeb.it
- Size: 1.06 MB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
#WpDevTool - WordPress Developer Tool v0.1.1
A simple development tool for WordPress...
##Description
WpDevTool implements many useful functions for WordPress Developer such as:
* **Maintenance mode**: Return a HTTP RESPONSE 503 (Service Temporary Unavailable) Under Maintenance landing page
* **Debug bar**: A simple bar which show number of query, timing and memory of current page
* **Enable error display and logging**: Now you can enable PHP errors diplay and logging without editing wp_config.php
* **Log console**: A console to show WordPress Error Log
* **Email redirect**: Redirect all WordPress emails to a single address
* **Wp-Cron manager**: Visualisation, search and deletion of Wp-Cron
* **Permalinks viewer**: Visualisation and search of Permalinks
* **wdt_dump()**: A formatted version of var_dump()
##Installation
1. Upload WpDevTool folder to the '/wp-content/plugins/' directory
2. Activate the plugin through the 'Plugins' menu in WordPress
##Frequently Asked Questions
### WpDevTool Errors Handling
WpDevTool can handle errors for you with the only downside that is fired at plugins activation. If you need a more complete logging and still use WpDevTool Error Console you can manually edit your wp-config.php file. Set WP_DEBUG constant to TRUE in your wp-config.php file and add the following lines of code right after :
```php
if (WP_DEBUG) {
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors',0);
}
```
##Support or Contact
Having trouble with WpDevTool? Open an [issue](https://github.com/micc83/WpDevTool/issues) or contact me at micc83@gmail.com
##Credits
Icon Credits goes to: [miniMAC](http://http://www.minimamente.com)
##Screenshots
