Skip to content

Instantly share code, notes, and snippets.

@rickrduncan
Last active November 8, 2015 12:24
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/45df164383ce8ce42d10 to your computer and use it in GitHub Desktop.
Save rickrduncan/45df164383ce8ce42d10 to your computer and use it in GitHub Desktop.
<?php
//* Do NOT include the opening php tag
//* Change the breadcrumb separator
function b3m_change_breadcrumb_separator( $args ) {
$args['sep'] = ' &rsaquo; ';
return $args;
}
add_filter( 'genesis_breadcrumb_args', 'b3m_change_breadcrumb_separator' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment