I've recently had to implement Google ReCaptcha in a custom PHP form. It's an easy thing to do, in theory, if you know how all the pieces fit together, but...
Read More
Imagine you have a multisite with many similar client sites. Perhaps you have a plugin or custom data stored about each subsite. One day you have to update that custom…
// Google Geocoding API Key $apiKey = 'API KEY GOES HERE'; $address = urlencode( '1600 Amphitheatre Pkwy, Mountain View, CA 94043' ); $url = "https://maps.googleapis.com/maps/api/geocode/json?address={$address}key={apiKey}"; $resp = json_decode( file_get_contents( $url...
Read More
In the post I show an interesting method for deferring loading of images using PHP and jQuery within a WordPress environment. However, this method can be applied to any environment…