Skip to content

Instantly share code, notes, and snippets.

@espenmn
Created June 5, 2023 14:40
Show Gist options
  • Select an option

  • Save espenmn/669ea6f552200e316dd70d4ad5a2e487 to your computer and use it in GitHub Desktop.

Select an option

Save espenmn/669ea6f552200e316dd70d4ad5a2e487 to your computer and use it in GitHub Desktop.
Add breadcrumbs wordpress
function get_breadcrumb() {
echo '<a href="'.home_url().'" rel="nofollow">Home</a>';
if (is_category() || is_single()) {
echo "&nbsp;|&nbsp;";
the_category(' &bull;');
if (is_single()) {
echo " &nbsp;|&nbsp; ";
the_title();
}
} elseif (is_page()) {
echo "&nbsp;|&nbsp;";
echo the_title();
} elseif (is_search()) {
echo "&nbsp;|&nbsp;Search Results for… ";
echo '"<em>';
echo the_search_query();
echo '</em>"';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment