Skip to content

Instantly share code, notes, and snippets.

View Clickys's full-sized avatar

Clickys Clickys

  • Cyprus, Limassol
View GitHub Profile
@Clickys
Clickys / Commands
Created July 26, 2024 18:30 — forked from lukecav/Commands
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')