Current File : /home/kelaby89/sergio-cuchi.tattoo/wp-content/themes/maori/single.php |
<?php get_header(); ?>
<?php $maori_background = get_post_meta( get_queried_object_id(), 'maori_cmb2_background', true ); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div class="maori-page-title">
<?php the_title('<h1><span>','</span></h1>'); ?>
<div class="maori-page-title-meta">
<div class="maori-author-meta">
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php echo get_avatar( get_the_author_meta( 'ID' ), 18 ); ?><?php the_author(); ?></a>
</div>
<?php if (get_the_category()) { ?>
<div class="maori-cat-meta">
<?php echo esc_html('In', 'maori'); ?> <?php echo the_category(', '); ?>
</div>
<?php } ?>
<div class="maori-date-meta">
<?php the_time(get_option('date_format')); ?>
</div>
</div>
</div>
<div class="maori-page-content">
<?php if ($maori_background != 'no') { ?>
<div class="maori-page-box">
<?php } ?>
<?php $maori_featured_img = get_theme_mod('maori_remove_featured_img'); ?>
<?php
if ((has_post_thumbnail()) && (empty($maori_featured_img))) {
$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 if( has_tag() ) { ?>
<div class="maori-meta-tags">
<span class="badge badge-default"><?php echo the_tags('','</span><span class="badge badge-default">', ''); ?></span>
</div>
<?php } ?>
<?php wp_link_pages( array(
'before' => '<div class="maori-page-links">',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'separator' => ''
));
?>
<?php if ($maori_background != 'no') { ?>
</div>
<?php } ?>
<?php get_template_part( 'templates/postnav', 'template'); ?>
<?php
$maori_enable_sharing = get_theme_mod('maori_enable_sharing');
if (( $maori_enable_sharing ) && ( function_exists( 'maori_social_media_buttons' ))) {
maori_social_media_buttons();
}
?>
</div>
<div class="clearfix"></div>
<?php comments_template(); ?>
<?php endwhile; ?>
<?php get_footer(); ?>