Current File : /home/kelaby89/sergio-cuchi.tattoo/wp-content/themes/maori/taxonomy-maorifaqcats.php |
<?php get_header(); ?>
<?php
$maori_term = get_queried_object();
$maori_term_title = $maori_term->name;
$args = array(
'post_type' => 'maorifaq',
'posts_per_page' => 999
);
$maori_archive_query = new WP_Query( $args );
?>
<div class="maori-page-title">
<h1><?php echo esc_html($maori_term_title); ?></h1>
</div>
<?php while ( $maori_archive_query->have_posts() ) : $maori_archive_query->the_post(); ?>
<div <?php post_class(); ?>>
<div class="card card-horizontal">
<div class="card-body">
<div class="card-horizontal-left no-thumb">
<h3 class="card-title no-margin"><a href="<?php echo esc_url(get_the_permalink()); ?>"><?php the_title(); ?></a></h3>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
<?php get_footer(); ?>