I’ve customized my breadcrumbs. Add code to functions.php.
add_filter('genesis_breadcrumb_args', 'customize_breadcrumbs'); function customize_breadcrumbs($args) { $args['labels']['prefix'] = 'Home'; $args['home'] = ''; $args['sep'] = '/'; return $args; } |
Now it doesn’t say Home/Home on the front page.