Skip to content

Instantly share code, notes, and snippets.

@rorymcdaniel
Created December 16, 2015 01:48
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rorymcdaniel/a4fb86b413f4cecd8f15 to your computer and use it in GitHub Desktop.
Save rorymcdaniel/a4fb86b413f4cecd8f15 to your computer and use it in GitHub Desktop.
Bash script that will regenerate all images for all sites in a WordPress multisite network
#!/bin/bash
for site in `wp site list --field=url`; do
wp media regenerate --yes --url=$site
done
~
@abiral
Copy link

abiral commented Dec 16, 2015

I am a new one to this ssh thing and WP CLI too.

can you provide an example too?

Thanks in advanced :)

@tomjn
Copy link

tomjn commented Dec 16, 2015

. loop-multisite.sh

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