我有一行 php 可以在我的自定义 wordpress 小部件中获取缩略图:
$footer_recent_thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'footer-recent-thumbnail' );
它产生两个php错误:
NOTICE: customwidgets.php:75 - Undefined variable: post
NOTICE: customwidgets.php:75 - Trying to get property of non-object
我该如何解决这个问题?它与我用来获取博客缩略图的 php 相同,它在那里没有给出错误。