Skip to main content

WP-CLI

====================================================================================

WP-CLI Installation guide

------------------------------------------------------------------------------------------------------------------------------------------------

Dump or import wp databases

wp db export backup.sql

------------------------------------------------------------------------------------------------------------------------------------------------

wp db import backup.sql 

Home & base URL

Check or set home URL
wp option get home 
wp option update homeurl domainname 
Check or set base URL
wp option get siteurl 
wp option update baseurl domainname 

------------------------------------------------------------------------------------------------------------------------------------------------

search and replace on database:

wp search-replace stringtoreplace replacementstring --skip-columns=guid --all-tables --allow-root

------------------------------------------------------------------------------------------------------------------------------------------------

Changing WordPress Admin/User Passwords

------------------------------------------------------------------------------------------------------------------------------------------------