Trying to get property of non-object error with thumbnail

admin2025-06-05  2

I'm trying to get the thumbnail of my featured image to display on my home.php (blog) page.

It is displaying fine, but when debugging mode is turned on, I get this error:

Notice: Trying to get property of non-object in /Applications/MAMP/htdocs/wpflat/wp-content/themes/wpflat/content-blog.php on line 2

My code is

<a href="<?php the_permalink();?>"><?php echo get_the_post_thumbnail($page->id, 'thumbnail'); ?></a>

How do I solve this issue?

I'm trying to get the thumbnail of my featured image to display on my home.php (blog) page.

It is displaying fine, but when debugging mode is turned on, I get this error:

Notice: Trying to get property of non-object in /Applications/MAMP/htdocs/wpflat/wp-content/themes/wpflat/content-blog.php on line 2

My code is

<a href="<?php the_permalink();?>"><?php echo get_the_post_thumbnail($page->id, 'thumbnail'); ?></a>

How do I solve this issue?

Share Improve this question edited Apr 24, 2014 at 7:15 Pieter Goosen 55.5k23 gold badges117 silver badges211 bronze badges asked Apr 24, 2014 at 7:09 user50763user50763 53 bronze badges 1
  • You need to show more code. What is $page? – vancoder Commented Apr 24, 2014 at 23:25
Add a comment  | 

1 Answer 1

Reset to default 2

I believe from your error that you are using this code inside the loop. You should be using the_post_thumbnail(). The code you are using is used outside the loop.

EDIT

It is always good practice to always first check if you have a thumbnail to display

So you should use

<?php if(has_post_thumbnail()): ?>
   <a href="<?php the_permalink();?>">
      <?php the_post_thumbnail( 'thumbnail'); ?>
   </a>
<?php endif; ?>
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749138436a316686.html

最新回复(0)