Results 1 to 2 of 2

Thread: display latest ads on non-wp page

  1. #1
    Thread Starter
    kensanchez's Avatar
    Join Date
    Jan 2011
    Location
    United States
    Posts
    9
    Thanks
    1
    Thanked 0 Times in 0 Posts

    display latest ads on non-wp page

    how can i display the latest ads from classipress on my index page?
    im using a setup like this http://domain.com its just index.php ... wordpress is at http://domain.com/ads/

    i used
    PHP Code:
    <?php
        
    // Include WordPress
        
    define('WP_USE_THEMES'false);
        
    // Change path below to location of wp-blog-header.php on server
        
    require('/home/user/public_html/ads/wp-blog-header.php');
        
    // Change number below to show 1 or more post excerpts
        
    query_posts('showposts=3');
    ?>
    to display latest posts on the index page but all that shows is the blog posts and not classipress ads .
    anybody know how to make this work?

  2. #2
    Member patrickjose's Avatar
    Join Date
    Dec 2012
    Location
    Brazil
    Posts
    83
    Thanks
    1
    Thanked 25 Times in 15 Posts
    You have to filter the post type.

    In this case, ad-listing.

    See if the code below helps you:

    Code:
    query_posts( array('post_type' => APP_POST_TYPE, 'showposts' => 3) );
    Regards

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. displaying specific jobs category or latest on a page wth out having thm on all page
    By tradeamillion in forum JobRoller General Discussion
    Replies: 1
    Last Post: June 20th, 2012, 09:58 AM
  2. Replies: 1
    Last Post: June 20th, 2012, 09:58 AM
  3. How do I list the latest jobs on any particular page
    By corecruitment in forum Report JobRoller Bugs
    Replies: 13
    Last Post: April 16th, 2012, 10:48 AM
  4. [SOLVED] Wrong Ad Display - the ad display page is weird
    By sergiomsperb in forum Report ClassiPress Bugs
    Replies: 3
    Last Post: December 2nd, 2011, 09:31 AM