我正在为Woocommerce开发一个插件,我使用Taxonomy Images插件为Woocommerce产品标签自定义分类添加图像功能。
现在,我正在尝试为每个产品展示产品标签名称及其在功能中的相应图像。但可能是我失败了,因为我看到了所有标签,而不仅仅是特定产品的标签。
要获取我使用global $product;
尝试的产品ID,但它无效。
这是我的代码:
function woo_idoneo_tab_content() {
$id = get_the_ID();
$terms = apply_filters( 'taxonomy-images-get-terms', '', array('taxonomy' => 'product_tag', 'id' => $id, ) );
if ( ! empty( $terms ) ) {
print '<div class="container">';
foreach ( (array) $terms as $term) {
$url = get_term_link ($term->slug, 'product_tag' , $id);
print '<div class="col-xs-12 col-sm-6 col-md-6 col-lg-4">';
print '<div class="card">';
print '<div class="card-img-top"><a href="'.$url.'">' . wp_get_attachment_image( $term->image_id, 'medium' ) . '</a></div>';
print '<div class="card-body">';
print "<h5 class='card-title'><a class='btn btn-primary' href='{$url}'>{$term->name}</a></h5>";
}
print '</div>';
print '</div>';
print '</div>';
}
print '</div>';
}
}
感谢任何帮助。
答案 0 :(得分:0)
而不是:
$terms = apply_filters( 'taxonomy-images-get-terms', '', array('taxonomy' => 'product_tag', 'id' => $id, ) );
你应该使用:
$terms = wp_get_post_terms( get_the_ID(), 'product_tag' );
现在Taxonomy Images插件将分类图像存储在wp_otion
表中。要获得该数据,您将使用:
$custom_taxonomy_images = get_option( 'taxonomy_image_plugin' ); // Array of term Ids / Image Ids pairs
所以现在重新访问的代码是:
function woo_idoneo_tab_content() {
// Check that plugin is active, if not we exit.
if( ! is_plugin_active( 'taxonomy-images/taxonomy-images.php' ) ) return;
$taxonomy = 'product_tag';
$post_id = get_the_ID();
$terms = wp_get_post_terms( $post_id, $taxonomy ); // Terms for this post
$custom_taxonomy_images = get_option( 'taxonomy_image_plugin' ); // Plugin images data
if ( empty( $terms ) ) return; // If no terms found, we exit.
## -- HTML Output below -- ##
echo '<div class="container">';
// Loop through each term in this post for the defined taxonomy
foreach ( $terms as $term ) {
$attachment_id = $custom_taxonomy_images[intval($term->term_id)]; // Get image Attachement ID
$image = wp_get_attachment_image( $attachment_id, 'medium' ); // Get image to be displayed
$url = get_term_link( $term->term_id, $taxonomy ); // Get term URL
?>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-4">
<div class="card">
<div class="card-img-top">
<a href="<?php echo $url; ?>"><?php echo $image; ?></a>
</div>
<div class="card-body">
<h5 class="card-title">
<a class="btn btn-primary" href="<?php echo $url; ?>"><?php echo $term->name; ?></a>
</h5>
</div>
</div>
</div>
<?php
}
echo '</div>';
}
代码放在活动子主题(或活动主题)的function.php文件中。
经过测试和工作。