File: /www/wwwroot/njmuedu.com/wp-content/themes/blogrank-pro/template-parts/content-loop.php
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( has_post_thumbnail() && ( blogrank_option('loop-featured-on', true) == true) ) { ?>
<a class="thumbnail-link" href="<?php the_permalink(); ?>">
<div class="thumbnail-wrap">
<?php
the_post_thumbnail('post-thumbnail');
?>
</div><!-- .thumbnail-wrap -->
</a>
<?php } ?>
<div class="entry-header">
<h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div class="byline">
<span class="entry-author">
<?php if ( blogrank_option('loop-author-avatar-on', true) == true) : ?>
<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ), get_the_author_meta( 'user_nicename' ) ) ); ?>"><?php echo get_avatar( get_the_author_meta( 'ID' ), 120 ); ?></a>
<?php endif; ?>
<?php if ( blogrank_option('loop-author-name-on', true) == true) : ?>
<?php esc_url( the_author_posts_link() ); ?>
<?php endif; ?>
</span>
<?php if ( blogrank_option('loop-date-on', true) == true) : ?>
<span class="entry-date"><?php echo get_the_date(); ?></span>
<?php endif; ?>
<?php if ( blogrank_option('loop-comment-on', true) == true) : ?>
<span class='entry-comment'><?php comments_popup_link( __('<i class="fa fa-comment-alt"></i> 0','blogrank-pro'), __('<i class="fa fa-comment-alt"></i> 1','blogrank-pro'), __('<i class="fa fa-comment-alt"></i> %','blogrank-pro'), 'comments-link', __('Comment closed','blogrank-pro')); ?></span>
<?php endif; ?>
</div>
</div><!-- .entry-header -->
<?php if ( blogrank_option('loop-excerpt-on', true) == true) : ?>
<div class="entry-summary">
<?php echo esc_html( wp_trim_words(get_the_excerpt(), blogrank_option('loop-excerpt-length','30')) ); ?>
<?php if ( blogrank_option('loop-more-on', true) == true) : ?>
<span class="read-more"><a href="<?php the_permalink(); ?>"><?php esc_html_e('Read more', 'blogrank-pro'); ?></a></span>
<?php endif; ?>
</div><!-- .entry-summary -->
<?php endif; ?>
</div><!-- #post-<?php the_ID(); ?> -->