Skip to content

Instantly share code, notes, and snippets.

@tjhole
Created October 15, 2015 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tjhole/4e86c84f8073790f565f to your computer and use it in GitHub Desktop.
Save tjhole/4e86c84f8073790f565f to your computer and use it in GitHub Desktop.
WORDPRESS: Function.php remove all featured images
global $wpdb;
$wpdb->query( "
DELETE FROM $wpdb->postmeta
WHERE meta_key = '_thumbnail_id'
" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment