Custom Post type with ACF in REST API, how do I get those values?
I use http://github.com/jjgrainger/PostTypes/ to register my custom post types and ACF to add custom fields to my custom post and I want to include in my wp-json response all registered fields per post and I do the following
$options = [
'supports' = array('revisions'),
'has_archive' = false,
'show_in_rest' = true,
'rewrite' = array('slug' = __('teachers', 'teachers')),
'capability_type' = 'post',
'rest_base' = 'teachers',
'query_var' = true,
'rest_controller_class' = 'WP_REST_Posts_Controller',
];
$teachers = new PostType('teacher', $options);
$locations = new Taxonomy('location');
$levels = new Taxonomy('level');
$teachers-filters(['first_name', 'last_name']);
$teachers-columns()-hide(['title', 'date']);
$teachers-columns()-add([
'first_name' = __('First Name'),
'last_name' = __('Last Name'),
]);
$teachers-taxonomy('location');
$teachers-taxonomy('level');
$teachers-columns()-populate('first_name', function ($column, $post_id) {
echo get_post_meta($post_id, 'first_name')[0];
});
$teachers-columns()-populate('last_name', function ($column, $post_id) {
echo get_post_meta($post_id, 'last_name')[0];
});
$levels-columns()-add([
'level' = __('Level'),
]);
$levels-register();
$locations-register();
$teachers-register();
but in wp-json response I do not have any custom fields, than I tried after googling adding the following filter
function my_rest_prepare_post($data, $post, $request) {
dd($data);
$_data = $data-data;
$fields = get_fields($post-ID);
foreach ($fields as $key = $value){
$_data[$key] = get_field($key, $post-ID);
}
$data-data = $_data;
return $data;
}
add_filter("rest_prepare_teacher", 'my_rest_prepare_post', 10, 3);
but in this case I get a Fatal Error
Fatal error/b: Uncaught Error: Call to a member function get_links() on null in
How can I reflect in wp-json response on a custom post type all related custom field values?
Update
I forgot to mention that on top of wordpress I use wordplate with sage and after tracking down rest_prepare_{$post_type}
method I got to this point, which is working in my case
add_filter("rest_prepare_teacher", function($post) {
$_data = $post-data;
$fields = get_fields($_data['id']);
foreach ($fields as $key = $value){
$_data[$key] = get_field($key, $_data['id']);
}
$post-data = $_data;
return $post;
});
Topic theme-roots advanced-custom-fields rest-api custom-post-types Wordpress
Category Web