Skip to content

Instantly share code, notes, and snippets.

@nfsarmento
Last active October 30, 2018 14:40
Show Gist options
  • Save nfsarmento/a5069880f8c09c28986b5a12cb32ad72 to your computer and use it in GitHub Desktop.
Save nfsarmento/a5069880f8c09c28986b5a12cb32ad72 to your computer and use it in GitHub Desktop.
WordPress breadcrumbs
/**
* Generate breadcrumbs
*
* https://www.nuno-sarmento.com
*/
function get_breadcrumb() {
echo '<a href="'.home_url().'" rel="nofollow">Home</a>';
if (is_category() || is_single()) {
echo "&nbsp;&nbsp;&#187;&nbsp;&nbsp;";
the_category(' &bull; ');
if (is_single()) {
echo " &nbsp;&nbsp;&#187;&nbsp;&nbsp; ";
the_title();
}
} elseif (is_page()) {
echo "&nbsp;&nbsp;&#187;&nbsp;&nbsp;";
echo the_title();
} elseif (is_search()) {
echo "&nbsp;&nbsp;&#187;&nbsp;&nbsp;Search Results for... ";
echo '"<em>';
echo the_search_query();
echo '</em>"';
}
}
.breadcrumb {
padding: 8px 15px;
margin-bottom: 20px;
list-style: none;
background-color: #f5f5f5;
border-radius: 4px;
}
.breadcrumb a {
color: #428bca;
text-decoration: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment