display classified adverts on custom single.php
Could someone please help with this problem. I have set up a custom single.php file and have included the code below:
I would like it to only display the classifieds of the current author of that post. It is currently displaying all the users classified ads.
<?php
// show only ads from this author
$paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
query_posts( array('post_type' => 'ad_listing', 'post_status' => 'publish', 'author' => $curauth->ID, 'paged' => $paged) );
?>
<?php get_template_part( 'loop', 'ad_listing' ); ?>
Thanks