????

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-layout.php

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

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

// Get post data
$post_format = get_post_format();
$entry_style = tb_blog_entry_style();

// Quote format is completely different
if ( 'quote' == $post_format ) :

	// Get quote entry content
	get_template_part( 'partials/blog/blog-entry-quote' );

	// Don't run any other code in this file
	return;

endif;

// Add classes to the blog entry post class - see framework/blog/blog-functions
$classes = tb_blog_entry_classes();

// Get layout blocks
$blocks = tb_blog_entry_layout_blocks(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class( $classes ); ?>>

	<div class="blog-entry-inner clr">

		<?php
		// Thumbnail entry style uses different layout
		if ( 'thumbnail-entry-style' == $entry_style ) : ?>

			<?php
			// Get media
			get_template_part( 'partials/blog/media/blog-entry', $post_format ); ?>

			<div class="blog-entry-content entry-details clr">

				<?php
				// Loop through entry blocks
				foreach ( $blocks as $block ) : ?>

					<?php
					// Display the entry title
					if ( 'title' == $block ) { ?>

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

					<?php }
					
					// Display the entry meta
					elseif ( 'meta' == $block ) { ?>

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

					<?php }

					// Display the entry excerpt or content
					elseif ( 'excerpt_content' == $block ) { ?>

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

					<?php }

					// Display the readmore button
					elseif ( 'readmore' == $block ) { ?>

						<?php if ( tb_has_readmore() ) { ?>

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

						<?php }

					}

					// Display the readmore button
					elseif ( 'social_share' == $block ) { ?>

						<?php get_template_part( 'partials/social-share' ) ?>

					<?php }

					// Custom Blocks
					else { ?>

						<?php get_template_part( 'partials/blog/blog-entry-'. $block ); ?>

					<?php } ?>

				<?php
				// End block loop
				endforeach; ?>

			</div><!-- blog-entry-content -->

		<?php

		// Other entry styles
		else :
			
			// Loop through composer blocks and output layout
			foreach ( $blocks as $block ) : ?>

				<?php
				// Featured media
				if ( 'featured_media' == $block ) { ?>

					<?php get_template_part( 'partials/blog/media/blog-entry', $post_format ); ?>

				<?php }

				// Display the entry header
				elseif ( 'title' == $block ) { ?>

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

				<?php }
				
				// Display the entry meta
				elseif ( 'meta' == $block ) { ?>

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

				<?php }

				// Display the entry excerpt or content
				elseif ( 'excerpt_content' == $block ) { ?>

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

				<?php }

				// Display the readmore button
				elseif ( 'readmore' == $block ) { ?>

					<?php if ( tb_has_readmore() ) { ?>

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

					<?php } ?>

				<?php }

				// Display the readmore button
				elseif ( 'social_share' == $block ) { ?>

					<?php get_template_part( 'partials/social-share' ) ?>

				<?php }

				// Custom Blocks
				else { ?>

					<?php get_template_part( 'partials/blog/blog-entry-'. $block ); ?>

				<?php } ?>

			<?php
			// End block loop
			endforeach; ?>

		<?php
		// End block check
		endif; ?>

	</div><!-- .blog-entry-inner -->

</article><!-- .blog-entry -->