1 && get_option( 'page_comments' ) ) : ?> < id="comment-">
comment_approved == '0' ) : ?>
$add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
>
%s %s'; comments_popup_link( sprintf( $comment_template, '0', esc_html__( 'comments', 'ailabflow' ) ), sprintf( $comment_template, '1', esc_html__( 'comment', 'ailabflow' ) ), sprintf( $comment_template, '%', esc_html__( 'comments', 'ailabflow' ) ) ); ?>
the_title_attribute( array( 'echo' => false, ) ), ) ); ?>

'; $return .= 'Read More'; $return .= ''; } return $return; } } if ( ! function_exists( 'ailabflow_entry_date' ) ) : function ailabflow_entry_date( $echo = true ) { if ( has_post_format( array( 'chat', 'status' ) ) ){ $format_prefix = esc_attr_x( '%1$s on %2$s', '1: post format name. 2: date', 'ailabflow' ); } else { $format_prefix = '%2$s'; } $date = '
'; $date .= sprintf( '
', get_the_date( 'c' ), get_the_date( 'j' ), get_the_date( 'M' ), get_the_date( 'Y' ) ); $date .= '
'; if ( $echo ){ echo trim($date); } else { return trim($date); } } endif; /** * Recent Posts widget function */ if( !function_exists('ailabflow_recent_posts') ){ function ailabflow_recent_posts( $post='' ){ $return = ''; $return .= '
  • '; if( has_post_thumbnail() ){ $return .= '' . get_the_post_thumbnail( get_the_ID(), 'full') . ''; } $return .= '
    '; $return .= ''; $return .= '' . get_the_title() . ''; $return .= '
    '; $return .= '
  • '; return $return; } }