我正在寻找一些帮助,以查找将在自定义 WooCommerce 主题中显示产品类别图像的 php 片段。我正在使用一个在小部件中执行 php 代码的插件,它适用于产品类别名称。我只是找不到任何适用于类别图像的东西。任何帮助,将不胜感激。
问问题
2737 次
3 回答
1
假设您知道类别 ID 并且它位于$cat_ID
:
// get the thumbnail ID
$thumbnail_id = get_woocommerce_term_meta( $cat_ID, 'thumbnail_id', true );
// get the image URL
$image = wp_get_attachment_url( $thumbnail_id );
// print the IMG HTML
echo '<img src="'.$image.'" />';
于 2012-11-01T00:41:20.243 回答
0
要在 archive-product.php 中显示当前显示类别的类别图像,请在 is_product_category() 为 true 时使用当前类别 term_id:
// verify that this is a product category page
if (is_product_category()){
global $wp_query;
// get the query object
$cat = $wp_query->get_queried_object();
// get the thumbnail id user the term_id
$thumbnail_id = get_woocommerce_term_meta( $cat->term_id, 'thumbnail_id', true );
// get the image URL
$image = wp_get_attachment_url( $thumbnail_id );
// print the IMG HTML
echo '<img src="'.$image.'" alt="" width="762" height="365" />';
}
于 2014-10-31T07:21:44.583 回答
0
请参阅以下代码:-
global $product;
if (is_product_category()) {
global $wp_query;
$cat = $wp_query->get_queried_object();
$thumbnail_id = get_woocommerce_term_meta($cat->term_id, 'thumbnail_id', true);
$image = wp_get_attachment_url($thumbnail_id);
if ($image) {
echo '<img src="' . esc_url($image) . '" alt="" />';
} }
于 2016-06-28T10:46:42.960 回答