Set up unit tests for your plugin
The wp-cli (command line interface) project has really been gaining traction. Scribu shows in this post how to easily setup unit tests for WordPress plugins using wp-cli.
The wp-cli (command line interface) project has really been gaining traction. Scribu shows in this post how to easily setup unit tests for WordPress plugins using wp-cli.
Phone number fields in Gravity Forms can be tough. You may have resorted to building your own custom fields and doing some coding to accommodate numbers outside the North American Numbering Plan (NANP) — or even within it. You may have had to match a precise numbering format for syncing a form field with a…
A nice intro post for a series on front end techniques from Pete Schuster. He talks the basics of debugging JavaScript with console.log. A good read.
Josh Kadis has written up a summary of his experience at Quartz (an excellent online business news magazine) using WordPress to build a web app. Their considerations for choosing to build their own API versus use Jetpack’s, using the settings API to their advantage, and a few other tidbits were really interesting here.
I want to show you what mature WordPress agencies should be looking for in your code as a developer and how to get hired by them.
Chris Lema has posted a nice tip for automatically changing WooCommerce order status when some orders a product. It’s especially useful in his context, as he sells digital downloads, and there’s no waiting period between processing and completing the order.
The word nonce indicates a number used only once, but in WordPress nonces can be used multiple times within 24 hours, although they are unique to the user, action, and ideally an object. Usually, that’s all that’s necessary, but to generate a nonce that really is used only once, Stephen Harris details a method to…