Results 1 to 5 of 5

Thread: display classified adverts on custom single.php

  1. #1
    Thread Starter
    cseamer's Avatar
    Join Date
    Jul 2010
    Location
    Australia
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    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

  2. #2
    Veteran ajamm's Avatar
    Join Date
    Nov 2011
    Location
    New Zealand
    Posts
    309
    Thanks
    26
    Thanked 32 Times in 29 Posts
    You must be an AppThemes customer and logged in to view this response. Join today!

  3. #3
    Thread Starter
    cseamer's Avatar
    Join Date
    Jul 2010
    Location
    Australia
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts
    You must be an AppThemes customer and logged in to view this response. Join today!

  4. #4
    Veteran bleem's Avatar
    Join Date
    Feb 2012
    Posts
    1,571
    Thanks
    103
    Thanked 205 Times in 180 Posts
    You must be an AppThemes customer and logged in to view this response. Join today!

  5. #5
    Junior Member ssvv's Avatar
    Join Date
    Dec 2011
    Location
    Slovenia
    Posts
    21
    Thanks
    2
    Thanked 11 Times in 5 Posts
    You must be an AppThemes customer and logged in to view this response. Join today!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [MOD NEEDED] how can i modify the display of custom fields in the "single ad listing" page ?
    By happystef in forum ClassiPress General Discussion
    Replies: 7
    Last Post: May 23rd, 2013, 03:37 AM
  2. [TUTORIAL] Adverts on single blog post based from custom taxanomy (custom_post_type merge)
    By foxsk8 in forum ClassiPress General Discussion
    Replies: 3
    Last Post: October 25th, 2011, 03:27 PM
  3. Display adverts in single blog post from category id
    By foxsk8 in forum ClassiPress General Discussion
    Replies: 2
    Last Post: October 21st, 2011, 11:25 AM
  4. [SOLVED] How to display adverts in the main and sub-category?
    By verdelino in forum Report ClassiPress Bugs
    Replies: 4
    Last Post: January 23rd, 2011, 07:41 AM