Results 1 to 1 of 1

Thread: How to add custom post (wp insert post) in classipress?

  1. #1
    Thread Starter
    ceger's Avatar
    Join Date
    Dec 2012
    Location
    Turkey
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    How to add custom post (wp insert post) in classipress?

    Hello,

    I want add custom post in classipress but I have a problem.

    Wp insert post:
    PHP Code:
            $my_post                    = array();
            
    $my_post['post_title']         = "My post";
            
    $my_post['post_content']    = "This is my post";
            
    $my_post['post_status']     = "pending";
            
    $my_post['post_author']     = 1;
            
    $my_post['post_category']   = array(9);
            
    $my_post['tags_input']         = "tags 1, tags 2";
            
    $my_post['post_type']         = "ad_listing";
            
    $post_ids                   wp_insert_post($my_post); 
    http://codex.wordpress.org/Function_...wp_insert_post

    This code is work. Problem is post_category and tags_input not work. please help me.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Classipress without Custom Post Types & Custom Taxonomies
    By wasee in forum ClassiPress General Discussion
    Replies: 3
    Last Post: January 26th, 2013, 02:54 PM
  2. Classipress without Custom Post Types & Custom Taxonomies
    By wasee in forum Report ClassiPress Bugs
    Replies: 1
    Last Post: January 12th, 2013, 01:27 AM
  3. How do I insert a banner after a post in Classipress?
    By jtboats in forum Report ClassiPress Bugs
    Replies: 1
    Last Post: October 19th, 2012, 10:28 PM
  4. How do I insert a banner in a post?
    By queimadeofertas in forum Help Using ClassiPress
    Replies: 2
    Last Post: January 17th, 2012, 05:47 PM
  5. Custom Taxonomies and custom post types in Classipress
    By carlos takemura in forum ClassiPress General Discussion
    Replies: 1
    Last Post: July 8th, 2010, 03:26 PM