Skip to content

Instantly share code, notes, and snippets.

@stevenkword
Created June 9, 2014 17:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save stevenkword/39ec1097baf75527cda1 to your computer and use it in GitHub Desktop.
Save stevenkword/39ec1097baf75527cda1 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
@dev981
Copy link

dev981 commented Dec 9, 2014

how to stop iteration when last xml is imported

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment