我正在尝试使用wordpress构建一个博客网站,并尝试使用链接显示可点击的图片。
<?php
$counter = get_posts();
$i = 0;
while ($i < count($counter)) {
$args = array( 'posts_per_page' => 1,'offset' => $i );
$i = $i + 3;
$lastposts = get_posts( $args );
foreach ( $lastposts as $post ) :
setup_postdata( $post );
$permalink = the_permalink();
$thumbnail = the_post_thumbnail_url();
echo '<a href="'.$permalink.'"><img src="' . $thumbnail . '"> </img></a>';
/*the_post_thumbnail();*/
endforeach;
wp_reset_postdata();
}
?>
我认为回声不起作用:/
结果如下:
<div class="col span_1_of_3">
This is column 1 http://lena.sbstn.net/2017/04/14/ein-neuer-post/http://lena.sbstn.net/wp-content/uploads/2017/01/22.jpg
<a href=""> <img src=""> </a>http://lena.sbstn.net/2017/01/29/new-york-cheesecake/http://lena.sbstn.net/wp-content/uploads/2017/01/image2-525x700.jpg
<a href=""> <img src=""> </a>
</div>
感谢您的帮助
答案 0 :(得分:2)
the_post_thumbnail_url()已经打印了网址。
改为使用get_the_post_thumbnail_url()。
再次对于永久链接,请使用get_the_permalink()而不是the_permalink()。
正如您在更新中看到的那样,它直接打印值而不是分配给变量。
如果你想使用the_permalink()&amp;然后,the_post_thumbnail_url()直接在该位置使用,而不是分配给变量。