Advertisement
Guest User

Untitled

a guest
May 7th, 2011
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.41 KB | None | 0 0
  1.                     <?php
  2.                    
  3.                     $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
  4.             query_posts('propertytype=land&posts_per_page=4&paged=$paged'); ?>
  5.                    
  6.                     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>`
  7.                                      
  8.                    <div class="post">
  9.                    <div class="thumb"><a href="<?php the_permalink(); ?>">
  10.                    <?php $image_id = get_post_thumbnail_id();  
  11.                $image_url = wp_get_attachment_image_src($image_id,'large');  
  12.                $image_url = $image_url[0]; ?>  
  13.                    <img src="<?php echo $image_url; ?>" width="202" height="140"></a></div>
  14.                    <div class="desc">
  15.                    <h6><?php the_title(); ?> <?php echo get_custom_field('Sq m'); ?> sq ft (<?php echo get_custom_field('Sq ft'); ?> sq m)</h6>
  16.  
  17.                    <p class="txt">
  18.                     <?php the_excerpt(); ?>
  19.                    </p>
  20.                        <a href="<?php the_permalink(); ?>" class="buttontwo">Read More</a>
  21.                       </div>
  22.                   </div>  
  23.                    
  24.                                    
  25.                   <?php endwhile;endif;?>
  26.                    
  27.                   <?php wp_reset_query(); ?>
  28.           <div class="paging">
  29.                         <?php wp_pagenavi(); ?>
  30.           </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement