Guest User

Untitled

a guest
Feb 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <a href="<?php echo str_replace( home_url(), '', get_permalink($post->ID) ); ?>
  2.  
  3. <article id="post-<?php the_ID(); ?>" <?php post_class($post-
  4. >post_name); ?>>
  5. <div class="container mainPage">
  6. <div class="row">
  7. <div class="entry-content col-sm-9">
  8. <?php $args = array( 'post_type' => 'listing');
  9. $loop = new WP_Query( $args );
  10. while ( $loop->have_posts() ) : $loop->the_post(); ?>
  11. <div class="col-6 col-sm-6 box no-gutters">
  12. <?php sd_template_post_thumbnail();
  13. the_title('<h2>', '</h2>'); ?>
  14. <span><?php the_field('price'); ?></span>
  15. <span><?php the_field('description'); ?></span>
  16. <span><?php the_field('style'); ?></span>
  17. <span><?php the_field('design'); ?></span>
  18. </div>
  19. <?php endwhile; ?>
  20. </div><!--entry-content col-sm-9-->
  21. <div class="sideContact col-sm-3">
  22. <?php get_sidebar(); ?>
  23. </div><!--sideContact-->
  24. </div><!--row-->
  25. </div><!--entry-content-->
  26. </article><!-- #post-<?php the_ID(); ?> -->
Add Comment
Please, Sign In to add comment