0

我正在学习如何制作自己的 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?谢谢

4

1 回答 1

0

该问题是由您使用的钩子引起的,它是在后循环开始时触发的。您必须检查wordpress 钩子以查看是否可以使用其中任何一个(可能最接近您需要的是 the_content),但如果在您需要的地方没有提供钩子,则必须创建自己的钩子/操作

于 2013-10-16T06:36:17.087 回答