HEX
Server: Apache/2.4.6 (CentOS) PHP/5.6.39
System: Linux izj6c6ukj0hyugxsgmuxz3z 3.10.0-514.6.2.el7.x86_64 #1 SMP Thu Feb 23 03:04:39 UTC 2017 x86_64
User: root (0)
PHP: 5.6.39
Disabled: NONE
Upload Files
File: /web/data/blog.tbbbearing.com/wp-content/themes/read-more/template-parts/content-single.php
<?php
/**
 * Template part for displaying single posts.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package Acme Themes
 * @subpackage Read More
 */

global $read_more_customizer_all_values;
$read_more_single_image_layout = $read_more_customizer_all_values['read-more-single-image-layout'];
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	<?php
	$sidebar_layout = read_more_sidebar_selection();
	if( has_post_thumbnail() && 'disable' != $read_more_single_image_layout ):
		echo '<div class="single-feat clearfix"><figure class="single-thumb single-thumb-full">';
		the_post_thumbnail( $read_more_single_image_layout );
		echo "</figure></div>";/*figure, .single-feat*/
	endif;
	$meta_float = 'pull-left';
	$content_float = 'pull-right';
	if( $sidebar_layout == "left-sidebar" ) :
		$meta_float = 'pull-right';
		$content_float = 'pull-left';
	endif;
	?>
	<div class="content-wrapper">
		<div class="row">
			<div class="col-md-9 <?php echo $content_float; ?>">
				<div class="entry-content">
					<?php 
					the_content();
					wp_link_pages( array(
						'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'read-more' ),
						'after'  => '</div>',
					) );
					read_more_entry_footer();
					?>
				</div><!-- .entry-content -->
			</div>
			<div class="col-md-3 <?php echo $meta_float; ?>">
				<div class="entry-meta">
					<?php read_more_posted_on( 120 ); ?>
				</div><!-- .entry-meta -->
				<?php
				/**
				 * read_more_related_posts hook
				 * @since Read More 1.0.0
				 *
				 * @hooked read_more_related_posts_left -  10
				 */
				do_action( 'read_more_related_posts' ,get_the_ID() );
				?>
			</div>
		</div>
	</div>
</article><!-- #post-## -->