Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davechu/5c4c48e23e503277f479 to your computer and use it in GitHub Desktop.
Save davechu/5c4c48e23e503277f479 to your computer and use it in GitHub Desktop.
For Bjorne. This bit of code goes in your theme's functions.php. Notice how I have 2 variations, the commented one removes that completely, the next one replaces the original text.
add_filter( 'genesis_breadcrumb_args', 'dc_breadcrumb_args' );
function dc_breadcrumb_args( $args ) {
//$args['labels']['prefix'] = '';
$args['labels']['prefix'] = 'Du är här';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment