/**
* The template for displaying archive pages.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package visit_nepal
*/
get_header(); ?>
<?php
if ( have_posts() ) : ?>
<div class="background-bg"></div>
<div class="package_section p-tb-40">
<div class="container">
<div class="package_detail">
<div class="area-title">
<h2><?php the_archive_title();?></h2>
</div>
<?php
if (z_taxonomy_image_url($term->term_id,'banner') ) : ?>
<figure>
<img src="<?php echo z_taxonomy_image_url($term->term_id,'banner'); ?>" />
</figure>
<?php endif; ?>
</div>
<ul class="grid-3 packages_module_wrapper packages_module_wrapper--1">
<?php while ( have_posts() ) : the_post();?>
<li>
<div class="package-inner">
<figure>
<?php
if(has_post_thumbnail() ) {
the_post_thumbnail('package');
} ?>
</figure>
<div class="package-body-inner">
<h3><a href="<?php the_permalink();?>"><?php the_title();?></a> </h3>
<div class="package-itenary row ">
<div class="col-md-6 col-lg-6">
<?php if( get_field('duration') ): ?>
<p>Duration: <span class="itenary-font"> <?php the_field('duration'); ?>
</span></p>
<?php endif ?>
<?php if( get_field('price') ): ?>
<p>Start From : <span class="itenary-font"> <?php the_field('price'); ?>
</span></p>
<?php endif ?>
</div>
</div>
</div>
</div>
</li>
<?php
endwhile;
wp_reset_postdata();
?>
</ul>
</div>
</div>
<div class="search-not">
<?php else :
get_template_part( 'template-parts/content', 'searchnotfound' );
?>
</div>
<?php endif; ?>
<?php
get_footer();?>
No comments:
Post a Comment