WordPress Custom Sortable Columns in Post/Page/CPT Listings
WordPress Custom Sortable Columns in Post/Page/CPT Listings Read More »
I have decided to test out another WordPress IDE – Visual Studio Code *(or should I do PHP Tools for Visual Studio first?) Step 1: Install the Visual Studio Code IDE from: https://code.visualstudio.com/ References: Autocomplete and snippetrs: https://marketplace.visualstudio.com/items?itemName=tungvn.wordpress-snippet Review with recommended plugins, etc: https://tommcfarlin.com/vs-code-wordpress/ https://code.visualstudio.com/docs/languages/php
WordPress IDE – Visual Studio Code Read More »
Recently I had to move a large number of users from one blog to another on a Multisite install. These users had been mistakenly added to the wrong blog and most of them also had been assigned the wrong role. There were plugin options to do this one by one, but not to bulk migrate users.
Bulk Migrate Users to New Blog on WordPress Multisite Read More »
function display_array($your_array) { foreach ($your_array as $key => $value) { if (is_array($value)) { display_array($value); } else { echo ‘<br> – Key: ‘ .$key . ‘ :: Value: ‘ . $value . “<br />\n”; } } return $out; }
Display an Array in PHP Read More »
Add a version number to a WordPress css file that will automatically update when the file is changed:
Automatically refresh the Stylesheet Version Number Read More »