Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- global $avia_config, $more;
- /*
- * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
- */
- get_header();
- echo avia_title(array('title' => "Properties")); //Changed for displaying custom title
- do_action( 'ava_after_main_title' );
- ?>
- <div class='container_wrap container_wrap_first main_color fullsize'>
- <div class='container'>
- <main class='template-page template-showcase-archive content av-content-full alpha units'>
- <?php
- echo '<div class="showcase-posts">';
- if(have_posts()) : while(have_posts()) : the_post(); ?>
- <div <?php post_class( 'showcase-post' ); ?>>
- <div class="showcase-post-thumbnail">
- <a href="<?php the_permalink(); ?>">
- <?php if ( has_post_thumbnail() ) { the_post_thumbnail('medium'); } ?>
- </a>
- </div>
- <div class="showcase-right">
- <div class="showcase-post-title">
- <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
- <?php the_title(); ?>
- </a>
- </div>
- <div class="showcase-price">
- $<?php the_field('price') ?>
- </div>
- <div class="showcase-address">
- <?php the_field('address') ?>
- </div>
- <div class="showcase-bedrooms">
- <i class="fa fa-bed"></i> <?php the_field('bedrooms') ?> Bedrooms
- </div>
- <div class="showcase-bathrooms">
- <i class="fa fa-tint"></i> <?php the_field('bathrooms') ?> Bathrooms
- </div>
- <div class="showcase-size">
- <i class="fa fa-exchange"></i> <?php the_field('size') ?> s.f.
- </div>
- </div>
- </div>
- <?php
- endwhile;
- echo "<div class='custom-pagination}'>".avia_pagination('', 'nav')."</div>";
- endif;
- echo '</div>';
- ?>
- <!--end content-->
- </main>
- </div><!--end container-->
- </div><!-- close default .container_wrap element -->
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement