Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Created October 14, 2013 12:43
Show Gist options
  • Save RhythmShahriar/6974998 to your computer and use it in GitHub Desktop.
Save RhythmShahriar/6974998 to your computer and use it in GitHub Desktop.
<?php
/**-------------------------------------------
* @package Code Snippets
* @link http://rhythmshahriar.com/code/
* @author Rhythm <[email protected]>
* @copyright Copyright (c) 2013, Rhythm Shahriar
-------------------------------------------------*/
/** Customize breadcrumbs display */
add_filter( 'genesis_breadcrumb_args', 'rs_breadcrumb_args' );
function rs_breadcrumb_args( $args ) {
$args['home'] = 'Home';
$args['sep'] = ' | ';
$args['list_sep'] = ', ';
$args['prefix'] = '<div class="breadcrumb"><div class="inner">';
$args['suffix'] = '</div></div>';
$args['labels']['prefix'] = '<span class="home"></span>';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment