Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created March 23, 2015 16:29
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 Kaiderella/a2d74896f78647d83851 to your computer and use it in GitHub Desktop.
Save Kaiderella/a2d74896f78647d83851 to your computer and use it in GitHub Desktop.
Tùy biến breadcrumbs trong Genesis
# Tùy biến breadcrumbs trong Genesis
add_filter( 'genesis_breadcrumb_args', 'ebooksvn_breadcrumb_args' );
function ebooksvn_breadcrumb_args( $args ) {
$args['home'] = 'Trang chủ ';
$args['sep'] = ' / ';
$args['list_sep'] = ', ';
$args['prefix'] = '<div class="breadcrumb"><div class="wrap">';
$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