Current File : /home/kelaby89/sergio-cuchi.tattoo/wp-content/themes/maori/templates/masonry-template.php |
<?php $maori_img_animation = get_theme_mod( 'maori_img_animation' ); ?>
<?php $maori_post_type = get_post_type(get_the_id()); ?>
<?php $maori_masonry_thumbnail = esc_attr(get_theme_mod('maori_masonry_thumbnail', 'large')); ?>
<div <?php post_class(); ?>>
<div class="card-masonry">
<div class="card">
<?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, $maori_masonry_thumbnail, true);
$maori_thumb_url = $maori_thumb_url_array[0];
?>
<a <?php if (empty($maori_img_animation)) { ?>class="maori-animated-img"<?php } ?> href="<?php echo esc_url(get_the_permalink()); ?>">
<img src="<?php echo esc_url($maori_thumb_url); ?>" alt="<?php the_title_attribute(); ?>" />
</a>
<?php } ?>
<div class="card-body">
<?php if( has_category() ) { ?>
<div class="card-category">
<span><?php echo the_category(', '); ?></span>
</div>
<?php } ?>
<h3 class="card-title"><a href="<?php echo esc_url(get_the_permalink()); ?>"><?php the_title(); ?></a></h3>
<?php the_excerpt(); ?>
</div>
<?php if ($maori_post_type == "post") { ?>
<div class="card-footer">
<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>
</div>
</div>