以下のコードは、マウスオーバー時に製品カテゴリ名、リンク、およびそれらのサムネイルを表示します。取得されるサムネイル($ image)は、woocommerce製品カテゴリーメニューを介して手動で設定されたものです。
代わりに、それぞれのベストセラー商品からこれらの商品カテゴリのサムネイルを取得しようとしています。これに新しいwp_queryとget_post_metaを含める方法は本当にわかりません。この追加により、サムネイルがまったく表示されなくなりました。
$max_cat_count = 24;
$qty_per_column = 6;
$args = array(
'taxonomy' => 'product_cat',
'number' => $max_cat_count + 1, // keep the + 1
'hide_empty' => 0,
);
$get_cats = get_terms( $args );
$get_cats = ( ! is_wp_error( $get_cats ) ) ? $get_cats : [];
$total = count( $get_cats );
$list_number = 1;
$_new_col = false;
$columns = '';
foreach ( $get_cats as $i => $cat ) {
if ( $i >= $max_cat_count ) {
break;
}
if ( $i % $qty_per_column === 0 ) {
if ( $_new_col ) {
$columns .= '</ul></div><!-- .cat_columns -->';
}
$id = 'cat-col-' . $list_number;
$columns .= '<div class="menu cat_columns" id="' . $id . '">';
$columns .= '<ul class="hoverimage">';
$_new_col = true;
$list_number++;
}
if ( $total > $max_cat_count && $i === $max_cat_count - 1 ) {
$columns .= '<li class="all-link"><a href="/view-all">View All </a></li>';
} else {
$terms = get_terms( 'product_cat', array(
'hide_empty' => false,
) );
foreach ( $terms as $term ) {
$query = new WP_Query( [
'post_type' => 'product',
'posts_per_page' => 1,
'meta_key' => 'total_sales',
'orderby' => 'meta_value_num',
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => $term->slug,
),
),
] );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
$thumbnail = content_url( '/uploads/woocommerce-placeholder-416x416.png' );
if ( has_post_thumbnail() ) {
$thumbnail = get_post_thumbnail_id();
$image = $thumbnail ? wp_get_attachment_url( $thumbnail ) : '';
}
}
}
wp_reset_postdata();
}
$link = '<a href="' . esc_url( get_term_link( $cat ) ) . '">' . esc_html( $cat->name ) . '</a>';
$columns .= '<li class="menu-item" data-image="' . esc_url( $image ) . '">' . $link . '</li>';
}
}
// Close last column, if any.
if ( $_new_col ) {
$columns .= '</ul></div><!-- .cat_columns -->';
}
?>
あなたの質問から私が理解したことは、各カテゴリーでベストセラーの製品を取得し、そのイメージをカテゴリーの親指として設定したいということです。
すべてのカテゴリをループする必要があります。次に、カテゴリの現在のループで最高の製品の各カテゴリにネストされたループも必要です。次に、ベストセラーの製品イメージにアクセスできます。
次のコードは、詳細(未テスト)を記述します。
$terms = get_terms( 'product_cat', array(
'hide_empty' => false,
) );
foreach ( $terms as $term ) {
$query = new WP_Query( [
'post_type' => 'product',
'posts_per_page' => 1,
'meta_key' => 'total_sales',
'orderby' => 'meta_value_num',
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => $term->slug,
),
),
] );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
$thumbnail = 'DEFAULT THUMBNAIL ID';
if ( has_post_thumbnail() ) {
$thumbnail = get_post_thumbnail_id();
//THEN YOU WILL BE ABLE TO SET THE CATEGORY THUMBNAIL WITH THIS PRODUCT THUMBNAIL ID
}
}
}
wp_reset_postdata();
}
あなたの質問から私が理解したことは、あなたはベストセラーの商品カテゴリーの画像を表示したいということです。その場合は、製品WP_Queryをループ処理する必要があります。書いたように、各ループはwp_get_object_terms関数を使用するだけです。関連付けられている製品カテゴリを返します。それがあなたのために役立つことを願っています。