Blog

Complex Pods Shortcodes

Someone on twitter recently said that WP and Pods coding was uglier than ExpressionEngine. Now, we all know it’s a bit different since EE coding isn’t straight PHP so it’s not a perfect comparison, but it got me thinking since the WP Shortcode API allows for similar stuff to this, perhaps we can do something …

Read more

Dating Pods

No, not that type of dating 🙂 Talking about the Pods usage of date(), we should at all times use date_i18n() instead, which has two params just like date() which are $format and $timestamp. This ensures all places where a date is shown is set to the correct timezone that the WP site is set …

Read more

Function Coding Standard

Just wondering, anyone prefer one over the other? I feel the first offers an easier lookup via Find if you just type in “function_name (” Suggested way: function function_name ($var, $var) { Current way: function function_name($var, $var) {