Current File : /home/kelaby89/sergio-cuchi.tattoo/wp-content/themes/maori/templates/post-template.php |
<?php $maori_img_animation = get_theme_mod( 'maori_img_animation' ); ?>
<?php $maori_post_type = get_post_type(get_the_id()); ?>
<div <?php post_class(); ?>>
<div class="card card-horizontal">
<div class="card-body">
<div class="card-horizontal-left <?php if (!has_post_thumbnail()) { ?>no-thumb<?php } ?>">
<?php if( has_category() ) { ?>
<div class="card-category">
<?php echo the_category(', '); ?>
</div>
<?php } ?>
<h3 class="card-title"><a href="<?php echo esc_url(get_the_permalink()); ?>"><?php the_title(); ?></a></h3>
<div class="card-excerpt">
<?php the_excerpt(); ?>
</div>
<?php if ($maori_post_type == "post") { ?>
<div class="card-horizontal-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>
<div class="maori-date-meta">
<a href="<?php echo esc_url(get_the_permalink()); ?>"><?php the_time(get_option('date_format')); ?></a>
</div>
</div>
<?php } ?>
</div>
<?php if (has_post_thumbnail()) { ?>
<?php
$maori_thumb_id = get_post_thumbnail_id();
$maori_thumb_url_array = wp_get_attachment_image_src($maori_thumb_id, 'large', true);
$maori_thumb_url = $maori_thumb_url_array[0];
?>
<div class="card-horizontal-right <?php if (empty($maori_img_animation)) { ?>card-horizontal-right-animated<?php } ?>" data-img="<?php echo esc_url($maori_thumb_url); ?>">
<a class="card-featured-img" href="<?php echo esc_url(get_the_permalink()); ?>"></a>
</div>
<?php } ?>
</div>
</div>
</div>