在显示带有缩略图的产品列表的页面中,转到任何产品页面的唯一方法是单击缩略图上的图标,并且仅该图标是一个按钮,从而允许访问者进入页面产品。
我需要删除图标(简单)并使所有图像成为按钮(单击),而我找不到如何将href放在调用该图像的php上。
您能帮我理解吗?
非常感谢
这是代码
<div class="book-item <?php print($style_product) ?>">
<div class="book-image">
<?php if (has_post_thumbnail( $loop->post->ID )) echo get_the_post_thumbnail($loop->post->ID); else echo '<img src="'.woocommerce_placeholder_img_src().'" alt="Placeholder" width="65px" height="115px" />'; ?>
</div>
<div class="book-actions">
<div class="list-action">
<div class="gridlist-buttonwrap open-book-btn">
<a href="<php the_permalink(); ?>" class="button product_type_simple open-book-button" >
<i class="fas fa-eye"></i>
</a>
</div>
</div><!--End list-action-->
</div>
</div><!--End book-item--> ```