Skip to content

Instantly share code, notes, and snippets.

@fjm
Last active June 23, 2018 12:11
Show Gist options
  • Save fjm/9b0c66ccf36810f3e37a0ea9e88a4dea to your computer and use it in GitHub Desktop.
Save fjm/9b0c66ccf36810f3e37a0ea9e88a4dea to your computer and use it in GitHub Desktop.
WP-CLI #wordpress

WP-CLI

  • wpコアファイルがあるとこで実行する

パスを指定して実行

$ /usr/local/bin/wp --path=/var/www/wordpress/admin [command]

database

# reset
$ wb db reset

# import
$ wp db import [path]

# export
$ wp db export [filename]

# replace
$ wp search-replace '[old]' '[new]'

plugins

# update
$ wp plugin update -all

# install & activate
$ wp plugin install contact-form-7 --activate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment