$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Trying to get property of non-object error with thumbnail|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Trying to get property of non-object error with thumbnail

matteradmin9PV0评论

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; ?>
Post a comment

comment list (0)

  1. No comments so far