Featured removed from past version to Pro
-
I tested this to bulk set first image as featured image and it worked, now the feature was removed. Understand the need to make some money, but its not nice to downgrade. please consider putting it back and find other enhancements for the Pro version. – thanks ex
p.s. found this somewhere:
To work around this problem we can convert / set first image of your wordpress post as a featured image with two simple SQL Queries.
[code]
insert into wp_postmeta (meta_value, meta_key, post_id) select DISTINCT(ID), post_type , post_parent from wp_posts where post_type= ‘attachment’ and post_parent !=0 and post_status=’inherit';
update wp_postmeta set meta_key = ‘_thumbnail_id’ where meta_key=’attachment’
[/code]
- The topic ‘Featured removed from past version to Pro’ is closed to new replies.