Skip to content

Instantly share code, notes, and snippets.

@marisqaporter
Last active August 29, 2015 14:19
Show Gist options
  • Save marisqaporter/93b7fc3244ca78f4e038 to your computer and use it in GitHub Desktop.
Save marisqaporter/93b7fc3244ca78f4e038 to your computer and use it in GitHub Desktop.
Change the Genesis Breadcrumb Separator
<?php
//* Do NOT include the opening php tag
//* Change the breadcrumb separator
add_filter( 'genesis_breadcrumb_args', 'change_separator_breadcrumb' );
function change_separator_breadcrumb( $args ) {
$args['sep'] = ' &nbsp;&rsaquo;&nbsp; ';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment