Articles

Wordpress Best Practices And Guidelines
Wordpress Starter Theme
WordPress Security
Handling Images In WordPress

Gravity Forms Spinner

The gravity forms spinner for ajax submit has a class associated with it: ‘gform_ajax_spinner’ for use in styling. This information is surprisingly hard to find on the googles. If you ...

WordPress Rewrite API

Read more on custom rewrite rules and the rewrite API: https://codex.wordpress.org/Rewrite_API/add_rewrite_rule I needed to render a page with various url parameters to set the og/meta tags properly. So for example: ...

WordPress Shortcode-ception

How to enable a shortcode to render INSIDE another shortcode…shortcode-ception, if you will. Pretty simple, just wrap the $content part of your shortcode in the do_shortcode() function. Ex: function caption_shortcode( ...

Custom Sort for get_terms

When using get_terms to return term objects from a taxonomy, there is no built-in way to set a custom order, as you can with post object menu order, for instance. ...

Redirect Interface for WordPress Admin

Lots of sites end up needing a client-friendly interface for creating url redirects. Previously the main way I would create a wordpress interface for vanity urls was to have a custom ...