Mika MAtikainen
Apr 15, 2020 · 4 min read
How to modify the text displayed as ‘Home’ on a website?
/**
* Rename "home" in breadcrumb
*/
add_filter( 'woocommerce_breadcrumb_defaults', 'wpsc_change_breadcrumb_home_text' );
function wpsc_change_breadcrumb_home_text( $defaults ) {
// Change the breadcrumb home text from 'Home' to 'Apartment'
$defaults['home'] = 'Apartment';
return $defaults;
}