';
echo '
';
_e('Home','apprise');
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: ','apprise');single_tag_title();
}
elseif (is_day()) {echo" " . __('Archive for: ','apprise'); the_time('F jS, Y'); echo'';}
elseif (is_month()) {echo" " . __('Archive for: ','apprise'); the_time('F, Y'); echo'';}
elseif (is_year()) {echo" " . __('Archive for: ','apprise'); the_time('Y'); echo'';}
elseif (is_author()) {echo" " . __('Author: ','apprise'); the_author_posts_link(); echo'';}
elseif (isset($_GET['paged']) && !empty($_GET['paged'])) {echo " " . __('Blog Archives ','apprise'); echo'';}
elseif (is_search()) {echo" " . __('Search Results ','apprise'); echo'';}
echo '';
}