如何在Wordpress API Post中包括META字段?

时间:2019-06-05 12:31:20

标签: php wordpress wordpress-rest-api

我正在使用Wordpress版本5.2.1,这意味着我没有为WP API使用插件。我有可以在我的WP网站上创建新帖子(使用自定义帖子类型)的工作代码,都很好。问题是我已经使用ACF创建了自定义字段,但是它们没有出现在新创建的帖子中。以下是我通过/wp-json/wp/v2/experience发送给WP的示例。

注意:experience是我的自定义帖子类型。

{'title': 'test', 'content': 'testing from python', 'status': 'draft', 'author': 1, 'meta': {'location': 'NYC', 'date': 'never', 'event_url': 'http://google.com'}, 'featured_media': 1221}

这将创建一个帖子,但是meta内的字段将被完全忽略。我的目标是将在meta中指定的字段包含在我新创建的帖子中。

我尝试了以下网址中列出的解决方案,但没有任何效果。

https://gist.github.com/rileypaulsen/9b4505cdd0ac88d5ef51

Wordpress Rest API - Custom Fields

https://jeffreyeverhart.com/2017/06/14/adding-custom-fields-wordpress-json-api/

我想念什么?

2 个答案:

答案 0 :(得分:0)

@Peter Foti您可以尝试使用以下功能在API中添加元值。

add_post_meta( <value>, <name>, $meta_value ,true );

有关参考,请参见此Link

答案 1 :(得分:0)

首先,您需要将'show_in_rest'属性设置为true,并且在注册新的帖子类型时,“ supports”属性应包含'custom-fields'。 如果要包含元字段,则需要支持“自定义字段”。

  

请注意,对于在自定义帖子类型上注册的元字段,帖子   类型必须具有自定义字段支持。否则,meta字段将   没有出现在REST API中。 https://developer.wordpress.org/rest-api/extending-the-rest-api/modifying-responses/

function cptui_register_my_cpts() {

    /**
     * Post Type: Experiences.
     */

    $labels = array(
        "name" => __( "Experiences", "twentynineteen" ),
        "singular_name" => __( "Experience", "twentynineteen" ),
    );

    $args = array(
        "label" => __( "Experiences", "twentynineteen" ),
        "labels" => $labels,
        "description" => "",
        "public" => true,
        "publicly_queryable" => true,
        "show_ui" => true,
        "delete_with_user" => false,
        "show_in_rest" => true,
        "rest_base" => "",
        "rest_controller_class" => "WP_REST_Posts_Controller",
        "has_archive" => false,
        "show_in_menu" => true,
        "show_in_nav_menus" => true,
        "exclude_from_search" => false,
        "capability_type" => "post",
        "map_meta_cap" => true,
        "hierarchical" => false,
        "rewrite" => array( "slug" => "experience", "with_front" => true ),
        "query_var" => true,
        "supports" => array( "title", "editor", "thumbnail", "custom-fields" ),
    );

    register_post_type( "experience", $args );
}

add_action( 'init', 'cptui_register_my_cpts' );

现在,您需要使用register_meta()注册元字段。

add_action( 'rest_api_init', 'register_experience_meta_fields');
function register_experience_meta_fields(){

    register_meta( 'post', 'location', array(
        'type' => 'string',
        'description' => 'event location',
        'single' => true,
        'show_in_rest' => true
    ));

    register_meta( 'post', 'date', array(
        'type' => 'string',
        'description' => 'event location',
        'single' => true,
        'show_in_rest' => true
    ));

    register_meta( 'post', 'event_url', array(
        'type' => 'string',
        'description' => 'event location',
        'single' => true,
        'show_in_rest' => true
    ));

}
  

注意:元字段必须是唯一的。将您在ACF中的字段前缀为   使其独一无二。

     

JSON不使用单引号引起来的字符串。它使用双   引号。您正在发送无效的JSON。

enter image description here

现在,如果要创建体验帖子类型。 使用JSON linter验证您的json。 https://jsonlint.com/

使用以下字段向http://paathsala-plugin.test/wp-json/wp/v2/experience发出POST请求

{
    "title": "test",
    "content": "testingfrompython",
    "status": "draft",
    "author": 1,
    "meta": {
        "location": "NYC",
        "date": "never",
        "event_url": "http: //google.com"
    },
    "featured_media": 1221
}

enter image description here

WordPress不允许您直接创建资源。您需要验证您的REST请求。我正在使用基本身份验证来验证WordPress REST API。您需要安装插件。从这里抓取:https://github.com/WP-API/Basic-Auth

我已经测试了以下python代码。

import base64
import json
import requests;

# Data to be send
data = {
    "title": "test",
    "content": "testingfrompython",
    "status": "draft",
    "author": 1,
    "meta": {
        "location": "NYC",
        "date": "never",
        "event_url": "http: //google.com"
    },
    "featured_media": 1221
}

# I am using basic auth plugin to for WP API authenticaiton
username = 'admin'
password = 'blood9807'

# Encode the username and password using base64
creds = base64.b64encode(username + ':' + password)

# Create headers to be send
headers = {
    'Authorization': 'Basic ' + creds,
    'Content-type': 'application/json', 
    'Accept': 'text/plain'
}

# Convert the python dictionary to JSON
data_json = json.dumps(data)

# Create a post
r = requests.post('http://paathsala-plugin.test/wp-json/wp/v2/experience', data = data_json, headers = headers )

print(r)