home.social

#wp-cli — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #wp-cli, aggregated by home.social.

fetched live
  1. ⚙️ SSD-Powered #cPanel Web #Hosting – Up to 25x Faster
    ⚙️ SSD-Powered cPanel Web Hosting by Rad Web Hosting
    Built for Performance. Backed by Reliability. Ready to Scale.
    Developers, sysadmins, and power users—we built this for you. Our SSD-powered cPanel web hosting ...
    Continued 👉 blog.radwebhosting.com/ssd-pow #postgresql #wpcli #sshaccess #joomla #litespeed #cloudlinux #letsencrypt #csf #webhosting #mariadb #webdisk #softaculous #modsecurity #phppgadmin #laravel #phpmyadmin #gitversioncontrol #ftp

  2. ⚙️ SSD-Powered #cPanel Web #Hosting – Up to 25x Faster
    ⚙️ SSD-Powered cPanel Web Hosting by Rad Web Hosting
    Built for Performance. Backed by Reliability. Ready to Scale.
    Developers, sysadmins, and power users—we built this for you. Our SSD-powered cPanel web hosting ...
    Continued 👉 blog.radwebhosting.com/ssd-pow #webdisk #cloudlinux #litespeed #softaculous #gitversioncontrol #joomla #letsencrypt #webhosting #csf #sshaccess #phppgadmin #phpmyadmin #mariadb #laravel #postgresql #wpcli #modsecurity #ftp

  3. ⚙️ SSD-Powered #cPanel Web #Hosting – Up to 25x Faster
    ⚙️ SSD-Powered cPanel Web Hosting by Rad Web Hosting
    Built for Performance. Backed by Reliability. Ready to Scale.
    Developers, sysadmins, and power users—we built this for you. Our SSD-powered cPanel web hosting ...
    Continued 👉 blog.radwebhosting.com/ssd-pow #webdisk #cloudlinux #litespeed #softaculous #gitversioncontrol #joomla #letsencrypt #webhosting #csf #sshaccess #phppgadmin #phpmyadmin #mariadb #laravel #postgresql #wpcli #modsecurity #ftp

  4. WordPress Developer Cheat Sheet: WP-CLI, REST API, Hooks & Redis
    ----------
    If you build or maintain WordPress sites for a living, the browser admin is the[…]
     
    #WordPress #Guides #RESTAPI #WPRESTAPI #WPCLI

    wpnews.io/wordpress-developer-

  5. ⚙️ SSD-Powered #cPanel Web #Hosting – Up to 25x Faster ⚙️ SSD-Powered cPanel ... Continued 👉 #modsecurity #litespeed #wpcli #phpmyadmin #csf #phppgadmin #joomla #softaculous #ftp #mariadb #letsencrypt #laravel #sshaccess #cloudlinux #webhosting #postgresql #gitversioncontrol #webdisk

    ⚙️ SSD-Powered cPanel Web Host...

  6. Set up a fully disposable local WordPress multisite lab to safely practice every WP-CLI command. Full setup, multisite conversion, standalone sites, and one-command cleanup.

    Full guide here: ostechnix.com/wp-cli-commands-

    #wpcli #wordpress #WpcliTestLab #devops #webdevelopment #docker #linux #opensource

  7. Set up a fully disposable local WordPress multisite lab to safely practice every WP-CLI command. Full setup, multisite conversion, standalone sites, and one-command cleanup.

    Full guide here: ostechnix.com/wp-cli-commands-

    #wpcli #wordpress #WpcliTestLab #devops #webdevelopment #docker #linux #opensource

  8. A practical WP-CLI guide covering 100+ commands for plugins, themes, users, databases, multisite, CI/CD, and automation. Includes cheat sheet, scripts, and Docker setup.

    Full guide here: ostechnix.com/wp-cli-commands-

    #wpcli #wordpress #devops #webdevelopment #docker #linux #opensource

  9. A practical WP-CLI guide covering 100+ commands for plugins, themes, users, databases, multisite, CI/CD, and automation. Includes cheat sheet, scripts, and Docker setup.

    Full guide here: ostechnix.com/wp-cli-commands-

    #wpcli #wordpress #devops #webdevelopment #docker #linux #opensource

  10. CW: Note: Sending a test email from WordPress/ClassicPress using WP-CLI

    Note to self: ignore all the search results that say to install a plugin. The absolute fastest way to send a test email from a WordPress/ClassicPress installation, assuming you're using WP-CLI, is just to run something like: wp eval 'wp_mail("[email protected]", "Test Email", "A test email from WP-CLI");'
    Read more: danq.me/2026/06/01/sending-a-t

    #note #classicpress #email #testing #wordpress #wpCli

  11. Learn how to install WP-CLI step by step on Debian, Ubuntu, Fedora, RHEL, AlmaLinux, Rocky Linux, macOS, and Windows (via WSL).

    Step-by-Step guide: ostechnix.com/how-to-install-w

    #wpcli #wordpress #InstallWpcli #Webdevelopment #Opensource #linux #macos #windows #wsl

  12. Learn how to install WP-CLI step by step on Debian, Ubuntu, Fedora, RHEL, AlmaLinux, Rocky Linux, macOS, and Windows (via WSL).

    Step-by-Step guide: ostechnix.com/how-to-install-w

    #wpcli #wordpress #InstallWpcli #Webdevelopment #Opensource #linux #macos #windows #wsl

  13. Discover what WP-CLI is, why developers use it to manage WordPress faster than the admin dashboard, and which hosting plans support it.

    More details here: ostechnix.com/what-is-wp-cli/

    #wpcli #wordpress #commandline #opensource #webdevelopment

  14. Discover what WP-CLI is, why developers use it to manage WordPress faster than the admin dashboard, and which hosting plans support it.

    More details here: ostechnix.com/what-is-wp-cli/

    #wpcli #wordpress #commandline #opensource #webdevelopment

  15. Building Custom WP-CLI Commands for Massive Data Migrations
    ----------
    Does this sound familiar? You need to update a custom field for 50,000 products or[…]
     
    #WordPress #Dev #migration #WPCLI

    wpnews.io/building-custom-wp-c

  16. Between WP-CLI, Acorn, and WordPress, you can build custom commands that assist with site maintenance. This post shows you how.
     
    #WordPress #Dev #Acorn #Composer #WPCLI
    ift.tt/Az5MiHw

  17. Using WP-CLI to Delete Posts Containing a Specific Metadata Value

    I was doing some maintenance on a WordPress site for a client, and for very specific reasons, I had to use non-interactive WP-CLI commands to do anything on this site.

    What I wanted to do

    Delete all pages that contained a custom postmeta key and value.

    For the sake of this example, I wanted to delete:

    • Post Type: Only “page” types
    • Containing the “_mykey” custom meta key with the value “value1”

    Solution

    Verify the posts that are going to be deleted first

    It’s always advisable to double check what you’re going to delete first. The “measure twice, cut once” one database management.

    wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page --meta_value="value1"


    Delete the Data

    Now that you’ve confirmed what you’re going to delete is correct, you can proceed.

    wp post delete $(wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page --meta_value="value1")

    For an added measure of safety, this only moves the posts into the trash. If you wanted to permanently delete them, add the --force flag to the delete command,

    wp post delete $(wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page --meta_value="value1") --force

    Bonus

    If you want to delete the posts that contain the “_mykey” meta_key, regardless of what the value is in meta_value,

    wp post delete $(wp post list --meta_key="_mykey" --fields="ID" --format=ids --post_type=page) --force

    #WPCLI
  18. Script to install #WordPress using #WPCLI: This tool helps you generate the commands to install WordPress with a specific theme and plugins. To use, build your config, then just paste into the terminal of your web hosting account. Securely just within your web browser 👍

    encode.host/knowledgebase/4716/

  19. Do I know anyone here who could help me with writing A basic #PHPUnit test for a #wpcli plugin I'm writing? Everything online I'm finding is how to scaffold unit tests with wpcli for a WordPress plugin, but not how to write tests for the actual wpcli part.

    #testing #PHP #WordPress

  20. Another nice thing about Local: wp-cli is built in.

  21. WP-CLI is a command-line interface for WordPress that allows you to manage your WordPress installations without using a web browser. While many users are familiar with basic commands, its true power lies in its ability to automate complex tasks, perform advanced debugging, and interact with WordPress in ways not easily achieved through the admin panel.

    Here are some "out-of-the-ordinary" examples:

    encode.host/knowledgebase/4731/
    #WordPress #WPCLI

  22. Almost a decade since I first learned about WP-CLI, and the

    wp db import
    wp db export
    wp search-replace

    commands still give me that sense of "oooo", "aaah", "wooow". Such time savers.

  23. 4 Ways To Generate Test Data in WordPress

    Manually adding this data to the database takes a lot of time. Learn how to generate WordPress data automatically.

    alexstandiford.com/articles/es