' . __( 'Direct script access denied.', 'articled') . '' );
}
global $post;
echo '
';
if (!is_home()) {
echo '- ';
if( articled_mod('breadcrumb_home_page_dis', 'both') == 'both' ){
echo ' ' . esc_html__( 'Home', 'articled' );
} elseif ( articled_mod('breadcrumb_home_page_dis', 'both') == 'text') {
_e('Home', 'articled');
} else {
echo '';
}
echo '
';
if ( is_category() || is_single() ){
echo '- ';
the_category('
- ');
if (is_single()) {
echo '
';
echo '- '.esc_html( get_the_title() ).'
';
}
} elseif( is_page() ){
if($post->post_parent){
$anc = get_post_ancestors( $post->ID );
$atitle = get_the_title();
foreach ( $anc as $ancestor ) {
$output = '- '.esc_html( get_the_title($ancestor) ).' /
';
}
echo esc_html( $output );
echo ' '.esc_html( $atitle ).'';
} else {
echo '- '.esc_html( get_the_title() ).'
';
}
}
} elseif ( is_tag() ) {
single_tag_title();
} elseif ( is_day() ) {
echo "- ".esc_html__('Archive for', 'articled').esc_html( get_option( 'date_format' ) ).'
';
} elseif ( is_month() ) {
echo "- ".esc_html__('Archive for', 'articled').esc_html( get_option( 'date_format' ) ).'
';
} elseif ( is_year() ) {
echo "- ".esc_html__('Archive for', 'articled').esc_html( get_option( 'date_format' ) ).'
';
} elseif ( is_author() ) {
echo '- '.esc_html__('Author Archive', 'articled').'
';
} elseif ( is_date() ) {
echo '- '.esc_html__('Archive for', 'articled').'
';
} elseif ( isset($_GET['paged'] ) && !empty($_GET['paged'])) {
echo '- '.esc_html__('Archive for', 'articled').'
';
} elseif ( is_search() ) {
echo '- '.esc_html__('Search Results', 'articled').'
';
}
echo '
';