Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jpcontrerasv/7c21b1f9c1fe62f19116ee7ef05923f1 to your computer and use it in GitHub Desktop.
Save jpcontrerasv/7c21b1f9c1fe62f19116ee7ef05923f1 to your computer and use it in GitHub Desktop.
add_filter('get_post_metadata', function($value, $object_id, $meta_key, $single) {
if ($meta_key !== '_thumbnail_id' || $value) {
return $value;
}
preg_match('~<img[^>]+wp-image-(\\d+)~', get_post_field('post_content', $object_id), $matches);
if ($matches) {
return $matches[1];
}
return $value;
}, 10, 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment