我正在尝试显示woocommerce类别图片。如果产品没有图像, 请尝试使用此代码, 但它不起作用。我不知道我做错了什么。使用此代码显示src”
(未知)”
。
if ( has_post_thumbnail() ) {
// thets work ok .....
}else{
global $wp_query;
// get the query object
$cats = $wp_query->
get_queried_object();
// get the thumbnail id using the queried category term_id
$thumbnail_ids = get_woocommerce_term_meta( $cats->
term_id, 'thumbnail_id', true );
// get the image URL
$images = wp_get_attachment_url( $thumbnail_ids );
$output .= '<
a href="'.$urllink.'" title="' . esc_attr( get_the_title() ) . '">
';
$output .= '<
img src="' . $images . '" alt="Placeholder" width="300" class="woocommerce-placeholder wp-post-image" height="300">
';
$output .= '<
/a>
';
}
#1【woocommerce分类图像加载到循环主题搜索(Mustang Lite主题)不起作用】尝试这个:
<
?php
if ( has_post_thumbnail( $loop->
post->
ID ) ) {
echo get_the_post_thumbnail( $loop->
post->
ID, 'shop_catalog' );
} else {
echo '<
img src="' . woocommerce_placeholder_img_src() . '" alt="Placeholder" />
';
}
?>
推荐阅读
- woocommerce显示带有缩略图的分类
- woocommerce如何获取当前分类
- #yyds干货盘点#还不理不清Vue.js目录结构(2分钟我来带你了解)
- 百度搜索中“鱼龙混杂”的加盟信息,如何靠AI 解决()
- #私藏项目实操分享#答题小程序中,如何将数据库里的排行榜数据导出为excel
- shell脚本之条件语句
- 使用 scipy.fft 进行Fourier Transform(Python 信号处理)
- k8s核心技术--configmap#yyds干货盘点#
- JavaMoney规范(JSR 354)与对应实现解读