Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save twentyfortysix/ad79523b60700312b01c8f659630d56c to your computer and use it in GitHub Desktop.
Save twentyfortysix/ad79523b60700312b01c8f659630d56c to your computer and use it in GitHub Desktop.
post2post_wp-cli_connections.sh
# bin/bash
for LOCATION in $(wp post list --post_type=locations --posts_per_page=-1 --format=ids); do
for PARTNER in $(wp post list --post_type=partners --connected_type=page2page --connected_items=$LOCATION --nopaging=true --posts_per_page=100 --format=ids); do
wp post delete $PARTNER --force
done
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment