我正在学习如何制作自己的 Wordpress 插件,目前我很困惑如果帖子中没有缩略图,那么我如何使用默认图像作为缩略图。我使用的代码:
add_action( 'the_post', 'mythumb' );
function mythum(){
if (!has_post_thumbnail()) {
$defaultthum = "http://example.com/default.jpg"
echo ('<div class="featured-thumbnail"><img width="150" height="150" src="'.$defaultthum.'" class="attachment-featured wp-post-image" alt="7" title="" /></div>')
}
}
我的问题:默认图像缩略图不在正确的位置。看到这张照片:http ://s22.postimg.org/ezt05f59d/Lm_XUp.png 有什么想法吗?或者钩子不是the_post?谢谢