在Wordpress中更改面包屑“商店”文本WooCommerce

在此页面上:http://extremity3d.com/product-category/custom-orthoses/

我希望将面包屑标题更改为“我们的产品”,而不是“商店”

有什么想法吗?

WO129876SHI 回答:在Wordpress中更改面包屑“商店”文本WooCommerce

在活动主题的functions.php中添加以下代码段-

add_filter( 'woocommerce_get_breadcrumb','modify_title_get_breadcrumb',99,2 );
function modify_title_get_breadcrumb( $crumbs,$breadcrumb ){
    if( ! is_product_category( 'custom-orthoses' ) ) return $crumbs; // Only custom-orthoses page

    // Check the 'Shop' item
    $check = __( 'Shop','woocommerce' );

    foreach( $crumbs as $key => $crumb ){
        if( $check === $crumb[0] ){
            // Change name
            $crumbs[$key][0] = __( 'Our Products','your-text-domain' );
        }
    }
    return $crumbs;
}
本文链接:https://www.f2er.com/3141418.html

大家都在问