Created
October 10, 2013 12:39
-
-
Save ElmahdiMahmoud/6917661 to your computer and use it in GitHub Desktop.
wp: the_breadcrumb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function the_breadcrumb() { | |
global $wp_query, $wp; | |
$total_results = $wp_query->found_posts; | |
echo '<ul id="crumbs">'; | |
if(!is_home() && is_search()) { | |
echo '<li><a href="' . get_option('home') . '">'; | |
echo 'Home </a><i class="separator"></i></li>'; | |
echo '<li>Search Results'. $total_results .' Post(s)</li>'; | |
}else{ | |
echo '<li><a href="' . get_option('home') . '">'; | |
echo 'Home </a><i class="separator"></i></li>'; | |
echo '<li>' . get_the_title() . '</li>'; | |
} | |
echo '</ul>'; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment