Skip to content

Instantly share code, notes, and snippets.

@haydenbbickerton
Created December 3, 2015 18:14
Show Gist options
  • Save haydenbbickerton/d04145faecae39f5687b to your computer and use it in GitHub Desktop.
Save haydenbbickerton/d04145faecae39f5687b to your computer and use it in GitHub Desktop.
Wordpress The7 with Yoast Breadcrumbs
if (function_exists('yoast_breadcrumb'))
{
function yoastBreadcrumbs()
{
// The start/end html is theme-specific.
return yoast_breadcrumb('<div class="wf-td"><div class="breadcrumbs text-normal" id="breadcrumbs">', '</div></div>', false);
}
// Override the theme's function for making breadcrumbs.
// This is for 'The7' theme, the name of the function is theme-specific.
add_filter('presscore_get_breadcrumbs', 'yoastBreadcrumbs', 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment