📅  最后修改于: 2022-03-11 14:54:09.495000             🧑  作者: Mango
1
remove_action( 'woocommerce_shop_loop_item_title','woocommerce_template_loop_product_title', 10 );
function customize_shop_page_product_title() {
$custom_text = 'My Custom Text';
echo '' . get_the_title() .$custom_text.'
';
}
add_action('woocommerce_shop_loop_item_title','customize_shop_page_product_title');