User Tools

Site Tools


wiki:wp_cli_commands

This is an old revision of the document!


WP cli commands

Standard WP cli commands

Install wp cli first

One liner:

curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar &&\
chmod +x wp-cli.phar &&\
mv wp-cli.phar /usr/local/bin/wp &&\
wp --info

Below commands are executed by root user hence the flag –allow-root.

Search and replace string in DB

Replace https://example.com with https://example.org:

wp --path=<wp installation> search-replace 'https://example.com' 'https://example.org' --skip-columns=guid --all-tables --allow-root

Same as above but on remote host:

wp --ssh=user@example.host.com --path=<wp installation> search-replace 'https://example.com' 'https://example.org' --skip-columns=guid --all-tables --allow-root

Change user's password

wp user update <username> --prompt=user_pass --allow-root

Create new admin user

wp user create bob bob@example.com --role=administrator --allow-root

List all plugins

wp plugin list --allow-root

Woo commerce orders

List all orders in csv format

wp wc shop_order list --path=<wp installation> --allow-root --user=<user> --format=csv

Get order details

wp wc shop_order get <id> --path=<wp installation> --allow-root --user=<user>

Tested on

  • Debian 10

See also

References

wiki/wp_cli_commands.1681979531.txt.gz · Last modified: 2023/04/20 10:32 by antisa

Except where otherwise noted, content on this wiki is licensed under the following license: CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki