There are a number of ways that we debug our WordPress-based projects.
- Some people end up going through the code and setting up `print_r` statements or `var_dump` statements
- Some end up working through the code and changing variables or function names until they find where something breaks (or changes)
- Some use debugging software (or the debugging features in their IDE)
- Some use a combination of plugins and other techniques
- And some likely use some strategy that isn’t listed here
Personally, I’m partial to using some of the developer tools that are provided by WordPress through the use of setting constants and using plugins that are available to us, but I’m also a fan of using Codebug App (which is the content for another point).

But, for the purposes of this post, that’s beside the point.


