Your IP : 216.73.216.165


Current Path : /var/www/html/wp-content/themes/church-event/templates/post/
Upload File :
Current File : /var/www/html/wp-content/themes/church-event/templates/post/header.php

<?php

/**
 * Post heade template
 *
 * @package wpv
 */

global $post;

$show = !has_post_format('status') && !has_post_format('aside');

if($show):
	$link = has_post_format('link') ?
				get_post_meta($post->ID, 'wpv-post-format-link', true) :
				get_permalink();
	?>
		<header class="single">
			<div class="content">
				<h4>
					<a href="<?php echo $link ?>" title="<?php the_title_attribute()?>" class="entry-title"><?php the_title(); ?></a>
				</h4>
			</div>
		</header>
	<?php
endif;