Current File : /home/kelaby89/sergio-cuchi.tattoo/wp-content/themes/maori/page.php
<?php get_header(); ?>
<?php
$maori_pagetitle = get_post_meta( get_queried_object_id(), 'maori_cmb2_pagetitle', true );
$maori_subtitle = get_post_meta( get_queried_object_id(), 'maori_cmb2_subtitle', true );
$maori_background = get_post_meta( get_queried_object_id(), 'maori_cmb2_background', true );
?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php if ((get_the_title()) && ($maori_pagetitle != 'no')) { ?>
<div class="maori-page-title">
    <?php if (!empty($maori_subtitle)) { ?>
    <?php the_title('<h1><span>','</span></h1>'); ?>
    <p class="maori-page-subtitle"><?php echo stripslashes(esc_html($maori_subtitle)); ?></p>
    <?php } else { ?>
    <?php the_title('<h1>','</h1>'); ?>
    <?php } ?>
</div>
<?php } ?>
<div class="maori-page-content">
    <?php if ($maori_background != 'no') { ?>
    <div class="maori-page-box">
    <?php } ?> 
    <?php 
        if (has_post_thumbnail()) {
            $maori_post_img_id = get_post_thumbnail_id();
            $maori_post_img_array = wp_get_attachment_image_src($maori_post_img_id, 'full', true);
            $maori_post_img = $maori_post_img_array[0];
        ?>
        <div class="maori-featured-img">
            <img src="<?php echo esc_url($maori_post_img); ?>" alt="<?php the_title_attribute(); ?>" />
        </div>
        <?php } ?>    
    <?php the_content(); ?>
    <div class="clearfix"></div>
    <?php wp_link_pages( array(
    'before'      => '<div class="maori-page-links"><span class="maori-page-links-desc">' . esc_html__( 'Pages:', 'maori' ) . '</span>',
	'after'       => '</div>',
    'link_before' => '<span>',
	'link_after'  => '</span>'
	));
    ?>
    <?php if ($maori_background != 'no') { ?>    
    </div>
    <?php } ?>
</div>
<div class="clearfix"></div>
<?php comments_template(); ?>
<?php endwhile; ?>
<?php get_footer(); ?>
Page not found – Hello World !