$depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
'.esc_html__( 'Read More', 'bc-business-consulting' ).'
'; } add_filter( 'the_content_more_link', 'bc_business_consulting_read_more_link' ); endif; if( ! function_exists( 'bc_business_consulting_excerpt_more' ) ) : /** * Implement Custom Comment template. * * @since 1.0.0 * * @param $comment, $args, $depth * @return $html */ function bc_business_consulting_excerpt_more( $link ) { if ( is_admin() ) { return $link; } $link = sprintf( '
%2$s
', esc_url( get_permalink( get_the_ID() ) ), /* translators: %s: Name of current post */ sprintf( __( 'Continue reading "%s"', 'bc-business-consulting' ), get_the_title( get_the_ID() ) ) ); return $link; } add_filter( 'excerpt_more', 'bc_business_consulting_excerpt_more' ); endif; if( ! function_exists( 'bc_business_consulting_blog_expert_excerpt_length' ) ) : /** * Excerpt length * * @since Blog Expert 1.0.0 * * @param null * @return int */ function bc_business_consulting_blog_expert_excerpt_length( $length ){ $excerpt_length = bc_business_consulting_get_option( 'excerpt_length_blog' ); if( is_admin() ){ return $length; }else{ if ( absint( $excerpt_length ) > 0 && !is_admin() ) { $length = absint( $excerpt_length ); } } return $length; } add_filter( 'excerpt_length', 'bc_business_consulting_blog_expert_excerpt_length', 999 ); endif; remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);