Skip to content

Instantly share code, notes, and snippets.

@rorymcdaniel
Created December 16, 2015 01:48
Show Gist options
  • 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
~
@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