gpt4 book ai didi

mysql - woocommerce - 从 mysql 获取类别图像

转载 作者:行者123 更新时间:2023-11-29 05:13:19 26 4
gpt4 key购买 nike

我想从 woocommerce 中的 mysql 数据库返回我的类别图像。我不知道该怎么办以及如何从数据库返回图像。

到目前为止,我只返回类别名称和 Ides,

SELECT * from `wp_terms` where term_id in (SELECT term_id FROM `wp_term_taxonomy` WHERE `taxonomy` LIKE 'product_cat' AND `parent` = 0 and count>0)

我该怎么做?

最佳答案

Try below code:

$catTerms = get_terms('product_cat', array('hide_empty' => 0, 'orderby' => 'ASC'));
foreach($catTerms as $catTerm) :
$thumbnail_id = get_woocommerce_term_meta( $catTerm->term_id, 'thumbnail_id', true );
// get the image URL
$image = wp_get_attachment_url( $thumbnail_id );
<li>
<img src="<?php echo $image; ?>" width="152" height="245"/>
<span><?php echo $catTerm->name; ?></span>
</li>
endforeach;

关于mysql - woocommerce - 从 mysql 获取类别图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36571930/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com