Skip to content

Instantly share code, notes, and snippets.

@RafaelFunchal
Forked from stevenkword/wp-cli-batch-import.sh
Created November 23, 2018 17:28
Show Gist options
  • Save RafaelFunchal/a5410343e25375f577c57c5d4dbee694 to your computer and use it in GitHub Desktop.
Save RafaelFunchal/a5410343e25375f577c57c5d4dbee694 to your computer and use it in GitHub Desktop.
# Activate the wordpress importer
wp plugin activate wordpress-importer --url=http://localhost/example.com/
# Iterate over all of the import files in a given folder.
for f in myfolder/*.xml; do wp import $f --authors=skip --skip=attachment --url=localhost/example.com/; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment