我使用此代码在我的类别中显示缩略图的帖子:
<?php the_post_thumbnail('thumbnail', array('class' => 'alignleft')); ?>
但我想把它们变成链接。我试试这段代码:
<?php if ( has_post_thumbnail()) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail(); ?>
</a>
<?php endif; ?>
但是文字不再出现在图像的右侧,并且图像太大。
如何解决它?(来源:http ://codex.wordpress.org/Function_Reference/the_post_thumbnail )