- Joined
- Mar 15, 2018
- Messages
- 53
- Likes
- 10
- Degree
- 0
Hi there,
I need to bulk remove featured images in WordPress.
I found this code, which removes all featured images from every post:
It seems to work as intended, but I need to find away to make it conditional. I'd like it to unset only featured images of posts that don't have a certain tag.
Anyone got an idea?
I need to bulk remove featured images in WordPress.
I found this code, which removes all featured images from every post:
Code:
global $wpdb;
$wpdb->query( "
DELETE FROM $wpdb->postmeta
WHERE meta_key = '_thumbnail_id'
" );
It seems to work as intended, but I need to find away to make it conditional. I'd like it to unset only featured images of posts that don't have a certain tag.
Anyone got an idea?