Replacing the home link in woocommerce breadcrumbs

后端 未结 1 697
渐次进展
渐次进展 2021-01-17 03:48

I know its a bit of a daft question, but like a fool I just cant find the right answer.

At the moment this is what my breadcrumbs look like

Home / Male Voice

相关标签:
1条回答
  • 2021-01-17 04:05

    Woocommerce provides filters for this.

    add_filter( 'woocommerce_breadcrumb_defaults', 'jk_change_breadcrumb_home_text' );
    function jk_change_breadcrumb_home_text( $defaults ) {
        // Change the breadcrumb home text from 'Home' to 'Voice Overs'
        $defaults['home'] = 'Voice Overs';
        return $defaults;
    }
    
    add_filter( 'woocommerce_breadcrumb_home_url', 'woo_custom_breadrumb_home_url' );
    function woo_custom_breadrumb_home_url() {
        return 'http://yoursite.com/voice-overs';
    }
    

    Use these filters in your functions.php file to get the desired results.

    https://docs.woocommerce.com/document/customise-the-woocommerce-breadcrumb/

    0 讨论(0)
提交回复
热议问题