function delete_directory( $dir ) { // Check if $dir is a directory. if ( ! is_dir( $dir ) ) { return false; // No need to continue …
Delete orphaned user meta
DELETE um FROM wp_usermeta um LEFT JOIN wp_posts u ON wp.ID = um.user_id WHERE u.ID IS NULL …
Get a list of orphaned user meta
SELECT * FROM rg_usermeta um LEFT JOIN rg_users u ON u.ID = um.user_id WHERE u.ID IS NULL …
Get word count of a post
add_filter( 'the_content', function( $content ) { $words = explode( ' ', $content ); $word_count = count( $words ); …
Restore Bitnami WordPress Filesystem Permissions
sudo chown -R bitnami:daemon TARGET sudo find TARGET -type d -exec chmod 775 {} \; sudo find TARGET -type f -exec chmod 664 {} \; sudo …
Batch file to remove WordPress site in XAMPP
:: PHP, WP-CLI, and MYSQL all need to be path environment variables. :: If you get errors that indicate something is not recognized as an …
Batch file to create WP site in XAMPP
:: This is for spinning up installs for dev work, so don't consider this for :: production applications. It creates everything off a …
Add the Customizer to the Toolbar
add_action( 'admin_bar_menu', function( $wp_adminbar ) { global $wp; $current_url = home_url( add_query_arg( array(), $wp->request ) …
Validate user registration email with Proofy.io API
/** * Validates email in native WP registration using Proofy.io API. * * @param array $errors A WP_Error object …