WordPress version usage statistics - WordPress version Usage Statistics UPDATED

WordPress version Usage Statistics UPDATED

This table displays the market share (in %) for each WordPress version of all the active WordPress websites on the internet. $(document).ready(function() { $.getJSON(‘https://api.wordpress.org/stats/wordpress/1.0/’) .done(function(resData) { var table_str = ‘ WordPress Version Usage (in %) ‘; $.each(resData, function(key, value){ table_str += ‘ ‘ + key + ‘ ‘ + value + ‘ ‘; }); table_str += … Read full article →

Display all Active WordPress plugins - Display all Active WordPress plugins

Display all Active WordPress plugins

Here is a simple WordPress plugin that will create a [activeplugin] shortcode: Add it as plugin and activate, then add shortcode [activeplugins] anywhere on your website and it will display all active plugins:

5 Plugins to easily copy posts or pages in WordPress - 5 Plugins to 📋 copy Posts or Pages in WordPress

5 Plugins to 📋 copy Posts or Pages in WordPress

The ability to copy/clone a post or a page in WordPress is a function that we would like to see added in future versions of WordPress CMS. Until then, we’ll have to rely on plugins. 🙂 Here are 5 of the most popular plugins for easily cloning and copying articles. Yoast Duplicate Post With over … Read full article →

wpcli password reset - Reset WordPress user password using WP-CLI

Reset WordPress user password using WP-CLI

In this guide We’ll cover how to reset a WordPress user password using WP-CLI. Step 1. Ensure WP-CLI is installed and you are in the website directory run the following command to check if you are in the right folder: Step 2. List all users and note user_login for the user Step 3. Replace the … Read full article →

no referer Error on LiteSpeed Cache Purge - no referer Error on LiteSpeed Cache Purge

no referer Error on LiteSpeed Cache Purge

When purging cache from the LiteSpeed Caching plugin the error no referer is shown and purging is not working. This error is caused by the Security Headers Referrer-Policy setting “no referer” on the server (or Cloudflare). The no-referrer value instructs the browser to never send the referer header with requests that are made from your site. This … Read full article →

Bulk Delete Millions of WooCommerce Products using WP CLI - 🗑️ Bulk Delete WooCommerce Products with WP CLI

🗑️ Bulk Delete WooCommerce Products with WP CLI

Here are a few useful one-liners that you can use to quickly remove all WooCommerce products from your store. Another approach: PRO TIP:If you are considering deleting items in WooCommerce, please be aware that this action cannot be undone. Once you have deleted an item, it will be permanently gone from your store. Before taking … Read full article →

Reinstall all WordPress plugins using WP CLI - Reinstall all WordPress plugins using WP-CLI

Reinstall all WordPress plugins using WP-CLI

Here is a convenient WP-CLI command that I use when cleaning hacked WordPress websites in order to reinstall all plugins from WordPress.org It consists of two commands: get a list of all active plugins, then force reinstall for each plugin. To reinstall all WordPress themes in the same manner use: