O zaman eklentisiz olarak şöyle yapabilirsiniz:
#breadcrumbs{
list-style:none;
margin:10px 0;
overflow:hidden;
}
#breadcrumbs li{
float:left;
margin-right:15px;
}
#breadcrumbs .separator{
font-weight:700;
font-size:20px;
color:#999;
}
Functions.Php
function the_breadcrumb() {
global $post;
echo '';
if (!is_home()) {
echo '- ';
echo 'Home';
echo ' - /
';
if (is_category() || is_single()) {
echo '- ';
the_category(' - /
- ');
if (is_single()) {
echo ' - /
- ';
the_title();
echo ' ';
}
} elseif (is_page()) {
if($post->post_parent){
$anc = get_post_ancestors( $post->ID );
$title = get_the_title();
foreach ( $anc as $ancestor ) {
$output = '- '.get_the_title($ancestor).'
- /
';
}
echo $output;
echo ' '.$title.'';
} else {
echo '- '.get_the_title().'
';
}
}
}
elseif (is_tag()) {single_tag_title();}
elseif (is_day()) {echo"- Arşiv "; the_time('F jS, Y'); echo'
';}
elseif (is_month()) {echo"- Arşiv "; the_time('F, Y'); echo'
';}
elseif (is_year()) {echo"- Arşiv "; the_time('Y'); echo'
';}
elseif (is_author()) {echo"- Yazar Arşivi"; echo'
';}
elseif (isset($_GET['paged']) && !empty($_GET['paged'])) {echo "- Blog Archives"; echo'
';}
elseif (is_search()) {echo"- Arama Sonucu"; echo'
';}
echo '
';
}
?>
Bunu da header.php'de uygun yere eklerseniz sorununuz çözülür sanırım:
Ek Olarak:
Bildirim gelsin diye alıntı yapayım hocam :D