wordpress迁移:功能问题

时间:2014-01-21 11:56:15

标签: php wordpress

我已将wordpress博客迁移到另一台服务器,现在我发现了一个问题...

某些功能不起作用。

例如显示每个帖子或类别列表的缩略图的功能。

没有错误,只是在html代码中没有显示任何内容。

示例:

<?php the_post_thumbnail ();>

输出=“”

1 个答案:

答案 0 :(得分:1)

使用此代码

if ( have_posts()  ) :  
      $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID) );
      $url = $thumb['0'];
endif;
     <img src="<?php echo $url;?>"/>