如何在页面和自定义 postype 中向 Wordpress REST API 公开所有 ACF 字段

我想向WordPress REST API公开属于页面或自定义帖子类型的所有ACF字段,以便通过javascript进行一些API调用。

最终的预期结果将是您可以轻松访问的对象内的所有 ACF 字段。ACF


答案 1

另一个简单的解决方案现在对我来说是完美的。在发送 rest 请求之前,您可以在或使用 ACF getFields 上添加以下函数。您可以将其添加到任何特殊页面 或 。functions.phpfields.phprest_prepare_pagerest_prepare_post

ACF 数据将在 json 响应中使用密钥acf

// add this to functions.php
//register acf fields to Wordpress API
//https://support.advancedcustomfields.com/forums/topic/json-rest-api-and-acf/

function acf_to_rest_api($response, $post, $request) {
    if (!function_exists('get_fields')) return $response;

    if (isset($post)) {
        $acf = get_fields($post->id);
        $response->data['acf'] = $acf;
    }
    return $response;
}
add_filter('rest_prepare_post', 'acf_to_rest_api', 10, 3);

答案 2

通过以下代码,您将能够在wordpress REST API中公开和自定义postypeS ACF字段,并在对象内访问它们。pageACF

您显然可以自定义要排除或包含在数组中的 pos 类型:和 。$postypes_to_exclude$extra_postypes_to_include

function create_ACF_meta_in_REST() {
    $postypes_to_exclude = ['acf-field-group','acf-field'];
    $extra_postypes_to_include = ["page"];
    $post_types = array_diff(get_post_types(["_builtin" => false], 'names'),$postypes_to_exclude);

    array_push($post_types, $extra_postypes_to_include);

    foreach ($post_types as $post_type) {
        register_rest_field( $post_type, 'ACF', [
            'get_callback'    => 'expose_ACF_fields',
            'schema'          => null,
       ]
     );
    }

}

function expose_ACF_fields( $object ) {
    $ID = $object['id'];
    return get_fields($ID);
}

add_action( 'rest_api_init', 'create_ACF_meta_in_REST' );

以下是供参考的要点:https://gist.github.com/MelMacaluso/6c4cb3db5ac87894f66a456ab8615f10


推荐