Created
December 7, 2016 20:47
-
-
Save marisqaporter/7c79a5aff159f06fd46e1d09cf11d554 to your computer and use it in GitHub Desktop.
product-loop-lelands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$args = array( | |
'post_type' => 'product', // enter your custom post type | |
'posts_per_page'=> '9', // return only 1 post | |
'orderby' => 'menu_order', // order | |
'order' => 'ASC' | |
); | |
$loop = new WP_Query( $args ); | |
if( $loop->have_posts() ): | |
/*row */ | |
echo '<div class="row top-xs center-xs">'; | |
while( $loop->have_posts() ): $loop->the_post(); global $post; | |
?> | |
<div class="col-xs-12 | |
col-sm-6 | |
col-md-6 | |
col-lg-4 | |
product-item"> | |
<a href="<?php the_permalink(); ?>" class="<?php the_field('url_class');?>"><div class="box product-box"><img src="<?php the_field('main_image'); ?>"> | |
<h3 class="products center white"><?php the_title(); ?></h3> | |
<div class="product-info"> | |
<div class="col-fourth pricing"><h4 class="left details">Beds</h4><h5 class="left details"><?php the_field('number_of_beds');?></h5></div> | |
<div class="col-fourth pricing"><h4 class="left details">Baths</h4><h5 class="left details"><?php the_field('number_of_baths');?></h5></div> | |
<div class="col-fourth pricing"><h4 class="left details">Square Ft</h4><h5 class="left details"><?php the_field('square_footage');?></h5></div> | |
<div class="pricing col-fourth pricing"><h4 class="left details">Price</h4><h5 class="left details">$<?php the_field('base_price');?></h5></div> | |
</div> | |
</div></a> | |
</div> | |
<!-- end template --> | |
<!-- wpv-loop-end --> | |
<?php | |
endwhile; | |
echo '</div>'; // end row | |
endif; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment