Skip to content

Latest commit

 

History

History
44 lines (40 loc) · 2.73 KB

DEVELOPER-TOOLING.MD

File metadata and controls

44 lines (40 loc) · 2.73 KB

Developer Tooling

Editor

Debugging:

  • Xdebug
  • PHPCS

Developer WordPress Plugins:

- Debug Bar: https://wordpress.org/plugins/debug-bar/ - show query, cache, other debugging info. If WP_DEBUG is enabled also shows PHP Warnings and Notices. If SAVEQUERIES is enabled also shows queries.
- Debug Bar Console: https://wordpress.org/plugins/debug-bar-console/ - Place to run arbitrary PHP.
- Debug Bar Shortcode: https://wordpress.org/plugins/debug-bar-shortcodes/
- Debug Bar Constants: https://wordpress.org/plugins/debug-bar-constants/
- Debug Bar Post Types: https://wordpress.org/plugins/debug-bar-post-types/
- Debug Bar Cron: https://wordpress.org/plugins/debug-bar-cron/
- Debug Bar Actions and Filters: https://wordpress.org/plugins/debug-bar-actions-and-filters-addon/
- Debug Bar Transients: https://wordpress.org/plugins/debug-bar-transients/
- Debug Bar List Script & Style Dependencies: https://wordpress.org/plugins/debug-bar-list-dependencies/
- Debug Bar Remote Requests: https://wordpress.org/plugins/debug-bar-remote-requests/
- Query Monitor: https://developer.wordpress.org/plugins/developer-tools/debug-bar-and-add-ons/

Misc

If you want to be listed on the office WP Plugin Directory, follow directions here: https://developer.wordpress.org/plugins/wordpress-org/

You may also want to look at Devin Vinson' repo that specifically supports WP Plugin Directory requirements: https://github.com/DevinVinson/Plugin-Directory-Boilerplate

10up recently released their own boilerplate/scaffolding for WP plugins: https://github.com/10up/plugin-scaffold/

WPPB

Source Material