Skip to content

Instantly share code, notes, and snippets.

@ptasker
Created May 11, 2017 18:01
Show Gist options
  • Save ptasker/1c8e5affd1e214263cbe3bc1bcbfe09a to your computer and use it in GitHub Desktop.
Save ptasker/1c8e5affd1e214263cbe3bc1bcbfe09a to your computer and use it in GitHub Desktop.
WP CLI remove all media
#!/usr/bin/env bash
DIR="$1"
if [ -z "$1" ]
then
echo "Usage: $0 {WP install dir path}"
exit 1
fi
cd $DIR
pwd
wp post delete $(wp post list --post_type='attachment' --format=ids)
@karpalig
Copy link

karpalig commented Jan 4, 2024

@ypsilon-p

Error: Parameter errors:
unknown --post_type parameter
unknown --format parameter
unknown --allow-root) parameter

Kindly help me to solve it

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