Your IP : 18.221.35.244


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

<?php

/**
 * The common code for the single and looped post template
 *
 * @package wpv
 */

	global $post, $wp_query;

	if ( ! isset( $blog_query ) ) {
		$blog_query = $wp_query;
	}

	extract(WpvPostFormats::post_layout_info());
	$format = get_post_format();
	$format = empty($format)? 'standard' : $format;

	if(defined('WPV_ARCHIVE_TEMPLATE'))
		$show_content = false;

	$post_data = array_merge(array(
		'p'       => $post,
		'format'  => $format,
		'content' => $blog_query->is_single( $post ) ? get_the_content() :
		                           ($show_content && !$news ? get_the_content(__('Read more', 'church-event'), false) : get_the_excerpt()),
	), WpvPostFormats::post_layout_info());

	if ( has_post_format( 'quote' ) && ! $blog_query->is_single( $post ) && ($news || ! $show_content) ) {
		$post_data['content'] = '';
	}

	$post_data = WpvPostFormats::process($post_data);

	$has_media = isset($post_data['media']) ? 'has-image' : 'no-image';
?>
<div class="post-article <?php echo esc_attr( $has_media ) ?>-wrapper <?php echo esc_attr( $blog_query->is_single() ? 'single' : '' ) ?>">
	<div class="<?php echo $format?>-post-format clearfix <?php echo isset($post_data['act_as_image']) ? 'as-image' : 'as-normal' ?> <?php echo isset($post_data['act_as_standard']) ? 'as-standard-post-format' : '' ?>">
		<?php
			if ( $blog_query->is_single( $post ) ) {
				include(locate_template('templates/post/main/single.php'));
			} elseif($news) {
				include(locate_template('templates/post/main/news.php'));
			} else {
				include(locate_template('templates/post/main/loop.php'));
			}
		?>
	</div>
</div>