Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <?php $new_query = new wp_query (array( 'meta_key' => 'valor', 'meta_value' => '', 'showposts' => 1000, 'orderby' => 'meta_value', 'order' => 'ASC' )); ?>
  2. <?php $count = 0; if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  3. <?php if ($count % 23 == 0):?>
  4. <?php else: ?>
  5. <?php endif; ?>
  6. <div class="imovel_int imovel hover topimovel ">
  7. <a class="c100 hoverimovel"href="<?php the_Permalink(); ?>"><?php the_post_thumbnail('imovel'); ?></a>
  8. <h2><?php title_limite(20); ?></h2>
  9. <span><?php echo get_post_meta($post->ID, 'bairro', true); ?></span>
  10. <span><?php echo get_post_meta($post->ID, 'cidade', true); ?></span>
  11. <div class="clear"></div>
  12. <div class="m_1"><?php echo get_post_meta($post->ID, 'dormitorios', true); ?></div>
  13. <div class="m_2"><?php echo get_post_meta($post->ID, 'garagem', true); ?></div>
  14. <div class="m_3"><?php echo get_post_meta($post->ID, 'área_do_terreno', true); ?></div>
  15. <?php the_excerpt_rereloaded(18, ''); ?>
  16. <div class="clear"></div>
  17. <h3><?php echo get_post_meta($post->ID, 'valor', true); ?></h3>
  18. </div>
  19. <?php $count++; ?>
  20. <?php endwhile; endif; wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement