📌  相关文章
📜  在商店页面存档页面的前后添加文本 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:09.495000             🧑  作者: Mango

代码示例1
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');