Wordpress缩略图链接

时间:2017-01-27 12:49:49

标签: php wordpress

如何在Wordpress上添加指向缩略图的链接

$output .= get_the_post_thumbnail(get_the_ID(),'Dave-profile', array('class' => 'img-responsive'));

我尝试添加

<a href="'.get_the_permalink().'"></a>

但它不起作用

2 个答案:

答案 0 :(得分:0)

你可以通过多种方式实现这一目标,其中一种方法是:

if (has_post_thumbnail(get_the_ID()))
{
    $output .= '<a href="' . get_permalink(get_the_ID()) . '">';
    $output .= get_the_post_thumbnail(get_the_ID(), 'Dave-profile', array('class' => 'img-responsive'));
    $output .= '</a>';
}

希望这有帮助!

答案 1 :(得分:0)

<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>
<?php echo $image[0]; ?>

使用上面的代码。 如果您需要更改大小,请替换“single-post-thumbnail”

缩略图,中等,大,完整