Skip to content

Instantly share code, notes, and snippets.

View justingivens's full-sized avatar

Justin D. Givens justingivens

View GitHub Profile
@jacobmc
jacobmc / bedrock-migration.sh
Last active February 22, 2022 02:19
Bedrock Migration CLI Commands
# Commands for updating the WordPress database for a migration
# from a flat WordPress install to a Bedrock install
wp search-replace /wp-content /app --all-tables
wp search-replace /wp-admin /wp/wp-admin --all-tables
wp search-replace /wp-login.php /wp/wp-login.php --all-tables
wp search-replace /xmlrpc.php /wp/xmlrpc.php --all-tables
# Chained Commands
wp search-replace /wp-content /app --all-tables && wp search-replace /wp-admin /wp/wp-admin --all-tables && wp search-replace /wp-login.php /wp/wp-login.php --all-tables && wp search-replace /xmlrpc.php /wp/xmlrpc.php --all-tables