Advertisement
Guest User

Custom Post Type Archive Page for Enfold

a guest
Mar 5th, 2016
705
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.88 KB | None | 0 0
  1. <?php
  2.     global $avia_config, $more;
  3.     /*
  4.      * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
  5.      */
  6.      get_header();
  7.      echo avia_title(array('title' => "Properties")); //Changed for displaying custom title
  8.      
  9.      do_action( 'ava_after_main_title' );
  10.      ?>
  11.         <div class='container_wrap container_wrap_first main_color fullsize'>
  12.             <div class='container'>
  13.                 <main class='template-page template-showcase-archive content av-content-full alpha units'>
  14.                     <?php
  15.                         echo '<div class="showcase-posts">';
  16.                             if(have_posts()) : while(have_posts()) : the_post(); ?>
  17.                                 <div <?php post_class( 'showcase-post' ); ?>>
  18.                                     <div class="showcase-post-thumbnail">
  19.                                       <a href="<?php the_permalink(); ?>">
  20.                                             <?php if ( has_post_thumbnail() ) { the_post_thumbnail('medium'); }  ?>
  21.                                       </a>
  22.                                    </div>
  23.                                     <div class="showcase-right">
  24.                                         <div class="showcase-post-title">
  25.                                             <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
  26.                                                 <?php the_title(); ?>
  27.                                             </a>
  28.                                         </div>
  29.                                       <div class="showcase-price">
  30.                                         $<?php the_field('price') ?>
  31.                                       </div>
  32.                                       <div class="showcase-address">
  33.                                         <?php the_field('address') ?>
  34.                                       </div>
  35.                                       <div class="showcase-bedrooms">
  36.                                         <i class="fa fa-bed"></i> <?php the_field('bedrooms') ?> Bedrooms
  37.                                       </div>
  38.                                       <div class="showcase-bathrooms">
  39.                                         <i class="fa fa-tint"></i> <?php the_field('bathrooms') ?> Bathrooms
  40.                                       </div>
  41.                                       <div class="showcase-size">
  42.                                         <i class="fa fa-exchange"></i> <?php the_field('size') ?> s.f.
  43.                                       </div>                                      
  44.                                     </div>
  45.                                 </div>
  46.                                 <?php
  47.                                 endwhile;
  48.                                 echo "<div class='custom-pagination}'>".avia_pagination('', 'nav')."</div>";
  49.                                 endif;
  50.                         echo '</div>';
  51.                     ?>                  
  52.                 <!--end content-->
  53.                 </main>
  54.             </div><!--end container-->
  55.         </div><!-- close default .container_wrap element -->
  56. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement