Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WP-API custom post type with custom taxonomy

I'm fighting with https://github.com/WP-API/WP-API I'm trying to add in a custom post type with a custom taxonomy called listing_categy: Querying this endpoint:

http://example.com/subfolder/wp-json/taxonomies/listing_categy/terms

gives me this:

[
  {
    "ID": 9,
    "name": "buying",
    "slug": "buying-2",
    "description": "",
    "parent": null,
    "count": 1,
    "link": "http:\/\/example.com\/subfolder\/listing_categy\/buying-2\/",
    "meta": {
      "links": {
        "collection": "http:\/\/example.com\/subfolder\/wp-json\/taxonomies\/listing_categy\/terms",
        "self": "http:\/\/example.com\/subfolder\/wp-json\/taxonomies\/listing_categy\/terms\/7"
      }
    }
  },
  {
    "ID": 10,
    "name": "selling",
    "slug": "selling-2",
    "description": "",
    "parent": null,
    "count": 0,
    "link": "http:\/\/example.com\/subfolder\/listing_categy\/selling-2\/",
    "meta": {
      "links": {
        "collection": "http:\/\/example.com\/subfolder\/wp-json\/taxonomies\/listing_categy\/terms",
        "self": "http:\/\/example.com\/subfolder\/wp-json\/taxonomies\/listing_categy\/terms\/8"
      }
    }
  }
]

the php file that handles the posting is this https://github.com/WP-API/WP-API/blob/master/lib/class-wp-json-posts.php :

  /**
   * Create a new post for any registered post type.
   *
   * @since 3.4.0
   * @internal 'data' is used here rather than 'content', as get_default_post_to_edit uses $_REQUEST['content']
   *
   * @param array $content Content data. Can contain:
   *  - post_type (default: 'post')
   *  - post_status (default: 'draft')
   *  - post_title
   *  - post_author
   *  - post_excerpt
   *  - post_content
   *  - post_date_gmt | post_date
   *  - post_format
   *  - post_password
   *  - comment_status - can be 'open' | 'closed'
   *  - ping_status - can be 'open' | 'closed'
   *  - sticky
   *  - post_thumbnail - ID of a media item to use as the post thumbnail/featured image
   *  - custom_fields - array, with each element containing 'key' and 'value'
   *  - terms - array, with taxonomy names as keys and arrays of term IDs as values
   *  - terms_names - array, with taxonomy names as keys and arrays of term names as values
   *  - enclosure
   *  - any other fields supported by wp_insert_post()
   * @return array Post data (see {@see WP_JSON_Posts::get_post})
   */
  public function new_post( $data ) {
    unset( $data['ID'] );

    $result = $this->insert_post( $data );
    if ( $result instanceof WP_Error ) {
      return $result;
    }

    $response = json_ensure_response( $this->get_post( $result ) );
    $response->set_status( 201 );
    $response->header( 'Location', json_url( '/posts/' . $result ) );

    return $response;
  }

I've tried sending the json to the /posts and it works fine for all bar the terms....

I've tried all of the following: this:

"title": $scope.listobject.listname, "status": "publish", "slug": "selling","type": "listing", "post_meta": $scope.dataform, "terms": { "listing_categy": [9] }

this:

"title": $scope.listobject.listname, "status": "publish", "slug": "selling","type": "listing", "post_meta": $scope.dataform, "terms": { "listing_categy": [ {"ID": 9 } ]} 

this:

"title": $scope.listobject.listname, "status": "publish", "slug": "selling","type": "listing", "post_meta": $scope.dataform, "terms": { "listing_categy": [9, 10 ] } 

This:

"terms_names": { "listing_categy": ["selling", "buying"] } 

the documentation is awful

like image 733
vimes1984 Avatar asked Jul 18 '14 21:07

vimes1984


1 Answers

Try with this: [your-site-root-dev-domain]/wp-json/posts/?type=[type-of-your-post]&filter[cat]=35

Please take a look to: https://github.com/WP-API/WP-API/issues/343

Tell me if this help you.

like image 127
drmartin Avatar answered Oct 13 '22 09:10

drmartin