• File: content-page.php
  • Full Path: /home/chassiw/www/wp-content/themes/reon/content/content-page.php
  • File size: 704 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php 
$show_page_heading = get_post_meta(reon_get_current_id(), "reon_met_page_heading", true)?get_post_meta(reon_get_current_id(), "reon_met_page_heading", true):'yes';
 ?>
<?php if($show_page_heading == 'yes'){ ?>
    <h2 class="post-title">
    	<?php the_title();?>
    </h2>
<?php } ?>

<?php 
	the_content();
?>
<div class="page-links">
	<?php
		wp_link_pages( array(
			'before'      => '<span class="page-links-title">' . esc_html__( 'Pages:', 'reon' ) . '</span>',
			'after'       => '',
			'link_before' => '<span>',
			'link_after'  => '</span>',
			'pagelink'    => '<span class="screen-reader-text">' . esc_html__( 'Page', 'reon' ) . ' </span>%',
			'separator'   => '',
		) );
	?>

</div>