Your IP : 216.73.216.95


Current Path : /var/www/spmeat/wp-content/themes/jannah/templates/loops/
Upload File :
Current File : /var/www/spmeat/wp-content/themes/jannah/templates/loops/loop-authors-widget.php

<?php
/**
 * Authors Widget Loop
 *
 * This template can be overridden by copying it to your-child-theme/templates/loops/loop-authors-widget.php.
 *
 * HOWEVER, on occasion TieLabs will need to update template files and you
 * will need to copy the new files to your child theme to maintain compatibility.
 *
 * @author   TieLabs
 * @version  5.0.4
 */

defined( 'ABSPATH' ) || exit; // Exit if accessed directly

// --
$author = tie_get_post_authors();

if( empty( $author[0] ) ){
	return;
}

$author = $author[0];

// Profile URL
$profile = tie_get_author_profile_url( $author );

// Author name
$display_name = tie_get_the_author( $author );

?>

<li <?php tie_post_class( 'widget-single-post-item widget-post-list' ); ?>>

	<?php

		$no_thumb = 'no-small-thumbs';

		// Show the avatar if it is active only
		if( get_option( 'show_avatars' ) ){
			$no_thumb = '';
			?>
			<div class="post-widget-thumbnail" style="width:70px">
				<a class="author-avatar" href="<?php echo $profile; ?>">
					<?php echo tie_get_author_avatar( $author, 70 ); ?>
				</a>
			</div>
			<?php
		}

	?>

	<div class="comment-body post-widget-body <?php echo esc_attr( $no_thumb ) ?>">
		<h3 class="post-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h3>

		<?php tie_the_post_meta( array( 'comments' => false, 'views' => false ) ); ?>
	</div>

</li>