Basic WordPress plugin example with AJAX Leave a Comment / General, PHP, Wordpress Companion notes for: http://conceptclarity.ca/ajax-sample/ Content coming soon.
Display an Array in PHP Leave a Comment / Code Snippets, PHP function display_array($your_array) { foreach ($your_array as $key => $value) { if (is_array($value)) { display_array($value); } else { echo ‘<br> – Key: ‘ .$key . ‘…
Speed Optimization Tips From WPMU Dev Leave a Comment / Site Optimization, Wordpress Pasting this here for future reference (from an email generated by WPMU Dev): Site speed isn’t all about images though – there are heaps of…
How to Display WordPress Block Patterns Programmatically (No Plugins Required) Leave a Comment / Code and Tech, Code Snippets, PHP, Wordpress I was customizing a WordPress installation and I wanted to output a WordPress Block Pattern programmatically. The pattern had been created in the admin, using…