我需要在产品标题之前添加数字。 1.产品名称 2.产品标题
function woocommerce_template_loop_product_title() {
$no = 0; $no++;
echo '<h5 class="woocommerce-loop-product__title product-title">'.$no.'' . get_the_title() . '</h5>';
}