????

Your IP : 216.73.216.121


Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/blog/
Upload File :
Current File : /home2/morganrand/www/wp-content/themes/wanderfuls-2/partials/blog/blog-entry-title.php

<?php
/**
 * Blog entry avatar
 *
 * @package Wanderfuls WordPress theme
 * @subpackage Partials
 * @version 3.0.0
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Define classes
$classes = 'blog-entry-header clr';
if ( $avatar_enabled = tb_post_entry_author_avatar_enabled( get_the_ID() ) ) {
	$classes .= ' header-with-avatar';
} ?>

<header class="<?php echo $classes; ?>">

	<h2 class="blog-entry-title entry-title">
		<a href="<?php tb_permalink(); ?>" title="<?php tb_esc_title(); ?>" rel="bookmark"><?php the_title(); ?></a>
	</h2><!-- .blog-entry-title -->

	<?php if ( $avatar_enabled ) : ?>

		<?php get_template_part( 'partials/blog/blog-entry-avatar' ); ?>
		
	<?php endif; ?>

</header><!-- .<?php $classes; ?> -->