0

我使用此代码在我的类别中显示缩略图的帖子:

<?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 )

4

1 回答 1

2

尝试这个:

<?php $imageClass = array ( 'class' => "alignleft",); ?>
<?php if ( has_post_thumbnail()) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail('thumbnail', $imageClass); ?>
</a>
<?php endif; ?>
于 2013-07-08T22:20:59.753 回答