代码之家  ›  专栏  ›  技术社区  ›  user1822824

在页面中添加产品副标题

  •  0
  • user1822824  · 技术社区  · 6 年前

    the_title( '<h1 class="product_title entry-title">', '</h1>' );
    echo "<p>My subtile</p>";
    

    enter image description here

    我找遍了所有地方,找不到在哪里修改WooCommerce商店其他视图的标题?

    1 回复  |  直到 6 年前
        1
  •  2
  •   LoicTheAztec    6 年前

    更新

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_shop_loop_item_subtitle', 20 );
    function woocommerce_shop_loop_item_subtitle() {
        global $product;
    
        echo '<p>' . __("My subtile", "woocommerce") . '</p>';
    }
    

    代码放在活动子主题(或活动主题)的function.php文件中。测试和工作。