Open ianmuscat opened 10 years ago
Hi,
I was having issues on a site with has_post_thumbnail() returning true even if the post did not have a Featured Image. The following fix (as recommended in http://codex.wordpress.org/Function_Reference/has_post_thumbnail) worked for me.
has_post_thumbnail()
true
Replacing has_post_thumbnail with '' != get_the_post_thumbnail on line 409 of media-tools.php seemed to do the trick.
has_post_thumbnail
'' != get_the_post_thumbnail
Hi,
I was having issues on a site with
has_post_thumbnail()
returningtrue
even if the post did not have a Featured Image. The following fix (as recommended in http://codex.wordpress.org/Function_Reference/has_post_thumbnail) worked for me.Replacing
has_post_thumbnail
with'' != get_the_post_thumbnail
on line 409 of media-tools.php seemed to do the trick.