HEX
Server: Apache
System: Linux vps75080.inmotionhosting.com 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User: reachcon (1003)
PHP: 7.2.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/reachcon/public_html/wp-content/themes/reach-connects/single.php
<?php
// The Template for displaying all single posts
get_header(); 
$showEntryMeta = true ;
echo '<div class="dBlue"><h1 itemprop="name">'.get_the_title().'</h1></div>';
?>
<div class="grid-x align-center">
	<div class="large-10 cell white">
		<div class="grid-x grid-padding-x align-center">
			<div id="primary" class="cell small-10 medium-8">
				<div id="content" role="main" itemscope itemtype="http://schema.org/Article">
					<?php while ( have_posts() ) : the_post(); ?>
						<?php 
							//get_template_part( 'content', get_post_format() ); 
							echo '<div class="date"><small>'.get_the_date( 'F j, Y' ).'</small></div>';
						
							echo '<div itemprop="articleBody" class="blogArticleBody">';
								
								if( have_rows('omada_page_builder') ){ initBuilder(get_the_ID()); }
								else{ the_content(); }
								
							echo '</div>';
						?>
							
							
					<?php endwhile; // end of the loop. ?>
				</div><!-- #content -->
			</div><!-- #primary -->

			<?php 
			$rsb = get_field('right_sidebar');
			echo '<div class="cell medium-4">';
				echo $rsb['sidebar'];
			echo '</div>';?>
		</div>
	</div>
</div>
<?php get_footer(); ?>