Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created May 14, 2021 05:12
Show Gist options
  • Select an option

  • Save wbcomdev/8cd4a05d70715004092c5e9b80f196fa to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/8cd4a05d70715004092c5e9b80f196fa to your computer and use it in GitHub Desktop.
/**
* Rename "home" in breadcrumb.
*/
function wb_wc_change_breadcrumb_home_text( $defaults ) {
// Change the breadcrumb home text from 'Home' to 'Apartment'.
$defaults['home'] = 'Apartment';
return $defaults;
}
add_filter( 'woocommerce_breadcrumb_defaults', 'wb_wc_change_breadcrumb_home_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment