
Untitled
By: a guest on
May 25th, 2012 | syntax:
None | size: 1.13 KB | hits: 12 | expires: Never
<?php
/*
Template Name: Property
*/
get_header(); ?>
<div id="primary">
<div id="content" role="main">
<?php
$args = array(
'post_type' => 'property',
'meta_query' => array(
array(
'key' => 'the_property_id',
'value' => $_GET['the_property_id'],
'compare' => 'LIKE'
),
);
query_posts($args);
?>
<?php while ( have_posts() ) : the_post(); ?>
<nav id="nav-single">
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'twentyeleven' ) ); ?></span>
<span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?></span>
</nav><!-- #nav-single -->
<?php get_template_part( 'content', 'single' ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_footer(); ?>