无法使产品图像可点击

时间:2016-03-05 作者:Lukas Baranauskas

我尝试了许多方法和解决方案,但我无法使产品图像可点击。代码如下:

if ( has_post_thumbnail() ) {
    $images .= get_the_post_thumbnail( $post->ID, \'shop_catalog\' );
} 
如果我让代码看起来像这样,它不会显示图像:

return \'<a href="\' . get_permalink( $post->ID ) . \'">\' .  get_the_post_thumbnail( $post->ID, \'shop_catalog\' ) . \'</a>\';

1 个回复
最合适的回答,由SO网友:sakarya 整理而成

try this..

$images .= \'<a href="\' . get_permalink( $post->ID ) . \'">\';
if ( has_post_thumbnail() ) {
    $images .= get_the_post_thumbnail( $post->ID, \'shop_catalog\' );
}
$images .= \'</a>\';

相关推荐

显示作者姓名PHP(自制插件)

我有一个需要帮助的问题,因为我自己找不到解决办法。我接管了一个网站,之前有人在那里创建了一个自制插件。。使用默认插件“Contact Form 7”,用户可以在页面上创建帖子。()https://gyazo.com/c8b20adecacd90fb9bfe72ad2138a980 )关于自行创建的插件“Contact Form 7 extender”,帖子是通过PHP代码在后台生成的(https://gyazo.com/115a6c7c9afafd2970b66fd421ca76a3)其工作原理如下:如果