Efficient debugging workflow for WordPress developers
When I started developing on wordpress with php I would always reach for var_dump() which would show me information about the variable. It did what it promised, it dumped the information of the variable.
For example.
$variable = array( 1, 2, 3 );
var...
bhanusingh.in5 min read