1
我正試圖在其特色圖像上添加woocommerce產品標題,因爲我用一些平面彩色背景替換了特色圖片,並且需要調用woocommerce產品標題。請分享我如何做到這一點?如何在html中調用woocommerce產品標題?
if (has_post_thumbnail()) {
\t \t \t $html = '<div data-thumb="' . get_the_post_thumbnail_url($post->ID, 'shop_thumbnail') . '" class="woocommerce-product-gallery__image"><a href="' . esc_url($full_size_image[0]) . '">';
\t \t \t $html .= get_the_post_thumbnail($post->ID, 'shop_single', $attributes);
\t \t \t $html .= '</a></div>';
\t \t } else {
\t \t \t $html = '<div class="woocommerce-product-gallery__image--placeholder">';
\t \t \t $html .= sprintf('<img src="%s" alt="%s" class="wp-post-image" />', esc_url(wc_placeholder_img_src()), esc_html__('Awaiting product image', 'woocommerce'));
\t \t \t $html .= '<div class="centered">';
\t \t $html .= how to call here!!!
\t \t \t $html .= '</div>';
\t \t \t $html .= '</div>';
\t \t }
它的工作原理!非常感謝你克里斯,你救了我 –