Skip to content

Instantly share code, notes, and snippets.

@rorymcdaniel
rorymcdaniel / loop-multisite.sh
Created December 16, 2015 01:48
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
~