Skip to content

Instantly share code, notes, and snippets.

@nicomollet
Last active August 29, 2015 14:07
Show Gist options
  • Save nicomollet/c3abea7b047d853fd253 to your computer and use it in GitHub Desktop.
Save nicomollet/c3abea7b047d853fd253 to your computer and use it in GitHub Desktop.
Wordpress Custom Breadcrumb Trail for StormBringer
<?php
// To customize the Breadcrumb, use this function in functions.php:
function custom_breadcrumb_trail_args(){
$args = array(
'separator' => '›', //Separator text
'before' => '' , // HTML displayed before
'after' => false, // HTML displayed after
'front_page' => true, // Display the homepage link
'show_home' => __( 'Home', "stormbringer" ), // Homepage text link
'echo' => true // Echo or not
);
return $args;
}
add_filter('breadcrumb_trail_args', 'custom_breadcrumb_trail_args');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment