Featured image doesn’t work | WordPress.org

I reviewed the source code of your theme and, unfortunately, they’re not using the filters our plugin relies on. Contact the theme author and ask them to wrap the $feat_image in a custom filter. Something like this:

$feat_image = apply_filters( 'cleanblog_featured_image', $feat_image, $post->ID );

and then you’ll be able to add a tiny snippet in your site that checks if the provided post ID has an external featured image and, if it does, use it:

add_filter(
  'cleanblog_featured_image',
  function( $url, $post_id ) {
    $aux = Nelio_Content_External_Featured_Image_Helper::instance();
    $efi = $aux->get_external_featured_image( $post_id );
    return empty( $efi ) ? $url : $efi;
  },
  10,
  2
);

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer