Skip to content

Instantly share code, notes, and snippets.

@Clickys
Forked from lukecav/Commands
Created July 26, 2024 18:30
Show Gist options
  • Select an option

  • Save Clickys/38c837504a87a48060eac206ccda11cb to your computer and use it in GitHub Desktop.

Select an option

Save Clickys/38c837504a87a48060eac206ccda11cb to your computer and use it in GitHub Desktop.
Delete unattached images using WP-CLI
wp post delete $(wp post list --post_type='attachment' --format=ids --post_parent=0)
wp post delete $(wp post list --post_type='attachment' \
--format=ids --post_parent=0 --post_mime_type='image/jpeg')
wp post delete $(wp post list --post_type='attachment' \
--format=ids --post_parent=0 --post_mime_type='image/png')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment