Skip to content

Instantly share code, notes, and snippets.

@salcode
Last active March 18, 2021 15:35
Show Gist options
  • Save salcode/70448316a9901ae6c8ce to your computer and use it in GitHub Desktop.
Save salcode/70448316a9901ae6c8ce to your computer and use it in GitHub Desktop.
WordPress oEmbed Cache SQL
# List all oembed cached values
SELECT * FROM wp_postmeta WHERE meta_key LIKE '_oembed_%';
# Delete all oembed cached values
DELETE FROM wp_postmeta WHERE meta_key LIKE '_oembed_%';
# Delete all oembed cached values for Vimeo
SELECT * FROM wp_postmeta WHERE meta_key LIKE '_oembed_%' AND meta_value LIKE '%_player.vimeo.com/video_%'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment