Guest User

Untitled

a guest
Nov 23rd, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. ## wp cli というのを使う
  2. $ brew install homebrew/php/wp-cli
  3.  
  4. ## ディレクトリ作成
  5. $ mkdir wordpress
  6. $ cd wordpress
  7.  
  8. ## ワードプレスをダウンロード & インストール
  9. $ wp core download
  10. $ mysql -u root -p -e 'CREATE DATABASE wordpress;'
  11. $ wp config create --dbname=wordpress --dbuser=root --dbpass='rootpass'
  12. $ wp server
  13.  
  14. ## インポート方法
  15. $ wp plugin install wordpress-importer --activate
  16. $ wp import xxxxx.xml —authors=create
Add Comment
Please, Sign In to add comment