我一直在尝试添加一个产品缩略图图片,链接到客户最近订单页面上的产品,我在woocommerce中的帐户。 感谢Anand从这个问题中得到了图像缩略图: Add Product Thumbnail to My Account - Recent Orders - Woocommerce, 但现在我正在努力使这个拇指成为链接到实际产品的永久链接。
所以我知道这是获取图像缩略图的代码:
<?php
// Get a list of all items that belong to the order
$products = $order->get_items();
// Loop through the items and get the product image
foreach( $products as $product ) {
$product_obj = new WC_Product( $product["product_id"] );
echo $product_obj->get_image();
}
?>
我一直试图将缩略图变成这样的永久链接:
<?php
// Get a list of all items that belong to the order
$products = $order->get_items();
// Loop through the items and get the product image
foreach( $products as $product ) {
$product_obj = new WC_Product( $product["product_id"] );
echo '<a href="'.get_permalink($product_id).'"><?php echo $product_obj->get_image();?></a>';
}
?>
或者像这样:
echo '<a href="'.get_permalink($product_id).'">'echo $product_obj->get_image()'</a>';
或者这个:
<a href="<?php echo $url = get_permalink( $product_id ); ?>">
<?php
// Get a list of all items that belong to the order
$products = $order->get_items();
// Loop through the items and get the product image
foreach( $products as $product ) {
$product_obj = new WC_Product( $product["product_id"] );
echo $product_obj->get_image();
}
?>
但是,似乎无法接近......?
答案 0 :(得分:2)
很简单,Product类有一个get_permalink
方法,您可以这样使用:
$product_obj = new WC_Product( $product["product_id"] );
$link = $product_obj->get_permalink();
echo '<a href="'. $link .'">' . $product_obj->get_image() . '</a>';
修改强>
如果您想使用WordPress提供的get_permalink
,您可以这样做
echo '<a href="'.get_permalink($product_obj->id).'"><?php echo $product_obj->get_image();?></a>';
您在下面的代码中使用了$product_id
,因为它未在您的代码无效的任何位置定义。你非常接近:)
echo '<a href="'.get_permalink($product_id).'"><?php echo $product_obj->get_image();?></a>';