Skip to content

Instantly share code, notes, and snippets.

@amielucha
Last active May 2, 2018 16:52
Show Gist options
  • Select an option

  • Save amielucha/26ed8bdccae835426b5635e97190b38f to your computer and use it in GitHub Desktop.

Select an option

Save amielucha/26ed8bdccae835426b5635e97190b38f to your computer and use it in GitHub Desktop.
Yoast Breadcrumbs in a Bootstrap-based theme
<?php
function lightseek_breadcrumbs() {
// Don't show breadcrumbs on the homepage.
if ( is_front_page() || !function_exists('yoast_breadcrumb') ) return;
$bread = yoast_breadcrumb('<nav aria-label="breadcrumb" id="breadcrumbs" class="breadcrumb">','</nav>', false);
// Apply Bootstrap classes to the breadcrumbs
$bread = str_replace('class="breadcrumb_last"', 'class="breadcrumb_last breadcrumb-item active"', $bread);
$bread = str_replace('property="v:title"', 'property="v:title" class="breadcrumb-item"', $bread);
echo $bread;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment