Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@rickrduncan
Created November 8, 2015 12:30
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 rickrduncan/f0aaa989b0686327dcce to your computer and use it in GitHub Desktop.
Save rickrduncan/f0aaa989b0686327dcce to your computer and use it in GitHub Desktop.
<?php
//* Do NOT include the opening php tag
//* Prefix author breadcrumb trail with the text 'Articles written by'
function b3m_prefix_author_breadcrumb( $args ) {
$args['labels']['author'] = 'Articles written by ';
return $args;
}
add_filter( 'genesis_breadcrumb_args', 'b3m_prefix_author_breadcrumb' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment