【发布时间】:2017-06-07 15:38:39
【问题描述】:
在 cart.php 中我们有:
<td class="product-thumbnail" style='background:url(<?php ?>)'>
<?php
$thumbnail = apply_filters( 'woocommerce_cart_item_thumbnail', $_product->get_image(), $cart_item, $cart_item_key );
if ( ! $product_permalink ) {
echo $thumbnail;
} else {
printf( '<a href="%s">%s</a>', esc_url( $product_permalink ), $thumbnail );
}
?>
</td>
有没有办法从中获取 url,以便我可以在 td 元素上使用背景图像而不是内部的图像标签?
【问题讨论】:
标签: php wordpress woocommerce cart