Current File : /home/kelaby89/sergio-cuchi.tattoo/wp-content/themes/maori/artists_template_2.php |
<?php
/*
Template Name: Artists - 3 Column
*/
?>
<?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_custom_query = new WP_Query(
array('post_type' => 'maoriartists', 'posts_per_page' => 999, 'order' => 'ASC')
);
?>
<?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-masonry-grid small-masonry">
<div class="maori-three-columns" data-columns>
<?php while($maori_custom_query->have_posts()) : $maori_custom_query->the_post(); ?>
<?php get_template_part( 'templates/xsartist', 'template'); ?>
<?php endwhile; ?>
</div>
</div>
<?php wp_reset_postdata(); ?>
<div class="clearfix"></div>
<?php get_footer(); ?>