Skip to content

Instantly share code, notes, and snippets.

@lucagrulla
Created February 17, 2012 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucagrulla/1853271 to your computer and use it in GitHub Desktop.
Save lucagrulla/1853271 to your computer and use it in GitHub Desktop.
wordpress php breadcrumb
<?php function the_breadcrumb() {
echo "<nav>";
echo "<ul class=\"breadcrumb\">";
echo "<li>";
echo "<a href=\"\">Home</a>";
echo "</li>";
echo "<li>";
echo the_category("</li><li>");
echo "<li>";
echo the_title();
echo "</li>";
echo "</ul>";
echo "</nav>";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment