';
echo '
';
_e('Home','andorra');
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 );
foreach ( $anc as $ancestor ) {
$output = ''.get_the_title($ancestor).' /';
}
echo $output;
echo ' '.get_the_title().'';
} else {
echo ' ';
echo the_title();
echo '';
}
}
elseif (is_tag()) {
_e('Tag: ','andorra');esc_attr(single_tag_title());
}
elseif (is_day()) {echo" " . __('Archive for ','andorra'); the_archive_title(); echo'';}
elseif (is_month()) {echo" " . __('Archive for ','andorra'); the_archive_title(); echo'';}
elseif (is_year()) {echo" " . __('Archive for ','andorra'); the_archive_title(); echo'';}
elseif (is_author()) {echo" " . __('Author: ','andorra'); esc_url(the_author_posts_link()); echo'';}
elseif (isset($_GET['paged']) && !empty($_GET['paged'])) {echo " " . __('Blog Archives ','andorra'); echo'';}
elseif (is_search()) {echo" " . __('Search Results ','andorra'); echo'';}
echo '';
}