Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@woogists
Last active April 13, 2024 05:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save woogists/11a40eec37b145461000487384619d4f to your computer and use it in GitHub Desktop.
Save woogists/11a40eec37b145461000487384619d4f to your computer and use it in GitHub Desktop.
[Frontend Snippets][Customize the WooCommerce breadcrumb] Customize home text
/**
* Rename "home" in breadcrumb
*/
add_filter( 'woocommerce_breadcrumb_defaults', 'wcc_change_breadcrumb_home_text' );
function wcc_change_breadcrumb_home_text( $defaults ) {
// Change the breadcrumb home text from 'Home' to 'Apartment'
$defaults['home'] = 'Apartment';
return $defaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment