When showing a category of posts or an archive page while displaying a breadcrumb, the breadcrumb will generally show something like “Home | Archives for Blog”. It’s perhaps not desired or necessary to show that it’s an archive page. So we can edit the breadcrumb text in Genesis by adding this code to the functions.php. But we remove ‘Archives for ‘ and just leave ” on the line for ‘category’. This will be a global change for all category archive pages.
//* Modify breadcrumb arguments. add_filter( 'genesis_breadcrumb_args', 'sp_breadcrumb_args' ); function sp_breadcrumb_args( $args ) { $args['home'] = 'Home'; $args['sep'] = ' / '; $args['list_sep'] = ', '; // Genesis 1.5 and later $args['prefix'] = '<div class="breadcrumb">'; $args['suffix'] = '</div>'; $args['heirarchial_attachments'] = true; // Genesis 1.5 and later $args['heirarchial_categories'] = true; // Genesis 1.5 and later $args['display'] = true; $args['labels']['prefix'] = 'You are here: '; $args['labels']['author'] = 'Archives for '; $args['labels']['category'] = 'Archives for '; // Genesis 1.6 and later $args['labels']['tag'] = 'Archives for '; $args['labels']['date'] = 'Archives for '; $args['labels']['search'] = 'Search for '; $args['labels']['tax'] = 'Archives for '; $args['labels']['post_type'] = 'Archives for '; $args['labels']['404'] = 'Not found: '; // Genesis 1.5 and later return $args; }
Thanks to Genesis to supply this code on this page: https://my.studiopress.com/documentation/snippets/breadcrumbs/modify-the-breadcrumbs-display/.