ID);
if ($post_categories) {
$output = '';
foreach ($post_categories as $post_category) {
$t_id = $post_category->term_id;
$color_id = "category_color_" . $t_id;
// retrieve the existing value(s) for this meta field. This returns an array
$term_meta = get_option($color_id);
$color_class = ($term_meta) ? $term_meta['color_class_term_meta'] : 'category-color-1';
$output .= '
' . esc_html($post_category->name) . '
';
}
$output .= '';
echo $output;
}
?>
';
}
do_action('blogus_breadcrumb_content'); ?>
post_content;
if ( ! empty( get_the_excerpt($post_obj) ) ) {
$source_content = get_the_excerpt($post_obj);
}
// Check if non-breaking space exists in the text with variations
if (preg_match('/\s*( |\xA0)\s*/u', $source_content)) {
// Remove non-breaking space and its variations from the text
$source_content = preg_replace('/\s*( |\xA0)\s*/u', ' ', $source_content);
}
$source_content = preg_replace( '`\[[^\]]*\]`', '', $source_content );
$trimmed_content = wp_trim_words( $source_content, $length, '…' );
return $trimmed_content;
}
endif;
if ( ! function_exists( 'blogus_breadcrumb_trail' ) ) :
/**
* Theme default breadcrumb function.
*
* @since 1.0.0
*/
function blogus_breadcrumb_trail() {
if ( ! function_exists( 'breadcrumb_trail' ) ) {
// load class file
require_once get_template_directory() . '/inc/ansar/breadcrumb-trail/breadcrumb-trail.php';
}
$breadcrumb_args = array(
'container' => 'div',
'show_browse' => false,
);
breadcrumb_trail( $breadcrumb_args );
}
add_action( 'blogus_breadcrumb_trail_content', 'blogus_breadcrumb_trail' );
endif;
if( ! function_exists( 'blogus_breadcrumb' ) ) :
/**
*
* @package Blogus
*/
function blogus_breadcrumb() {
if ( is_front_page() || is_home() ) return;
$breadcrumb_settings = get_theme_mod('breadcrumb_settings','1');
if($breadcrumb_settings == 1) {
$blogus_site_breadcrumb_type = get_theme_mod('blogus_site_breadcrumb_type','default'); ?>
found_posts;
?>
0 ) {
// Translators: %s is the number of found results.
echo sprintf(
_n( '%s result found', '%s results found', $total_results, 'blogus' ),
number_format_i18n( $total_results )
);
} else {
echo esc_html__( 'No results found', 'blogus' );
}
?>