We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
wp site list --field=url --url="NETWORK_URL" | xargs -I {} wp content-sync-fusion queue pull --url={}
You must replace NETWORK_URL by a real value.
An alternate syntax :
for url in $(wp site list --field=url --url="NETWORK_URL"); do wp content-sync-fusion queue pull --url=$url ; done
We recommend to exec this task each minute : */1 * * * *