最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

metabox - Options to get my custom post type metadata via the WordPress API

programmeradmin0浏览0评论

I am using a plugin that adds multiple custom post types all of which have their own meta-data. I am able to expose the custom post type to WordPress's API but the metadata collected with those post is not.

For example "Team Members" is a post type and it is declared in the team.php file. I was able to add it to the WP API via 'show_in_rest' => true, there is also a team-metaboxes.php which I tried to add the same attribute to by am not seeing it in the API JSON.

I am seeing the team metadata in the wp_postmeta table in the DB but I am having a hard time accessing it via the API.

What are my options. As of now I am using:

/

But am not sure how to get the metadata for the team-post content types.

Per a recommendation below I have added the following snippet to my themes functions.php and still no meta data in the JSON returned from the API:

register_meta('post', 'fb_si', [
    'object_subtype' => 'team-post',
    'show_in_rest' => true
]);

The fact that the metaboxes are added via a plugin would that matter?

I am using a plugin that adds multiple custom post types all of which have their own meta-data. I am able to expose the custom post type to WordPress's API but the metadata collected with those post is not.

For example "Team Members" is a post type and it is declared in the team.php file. I was able to add it to the WP API via 'show_in_rest' => true, there is also a team-metaboxes.php which I tried to add the same attribute to by am not seeing it in the API JSON.

I am seeing the team metadata in the wp_postmeta table in the DB but I am having a hard time accessing it via the API.

What are my options. As of now I am using:

http://cmyk-demo.ra/wp-json/wp/v2/team-post/

But am not sure how to get the metadata for the team-post content types.

Per a recommendation below I have added the following snippet to my themes functions.php and still no meta data in the JSON returned from the API:

register_meta('post', 'fb_si', [
    'object_subtype' => 'team-post',
    'show_in_rest' => true
]);

The fact that the metaboxes are added via a plugin would that matter?

Share Improve this question edited Dec 4, 2019 at 5:45 Denoteone asked Dec 4, 2019 at 2:37 DenoteoneDenoteone 2091 gold badge4 silver badges12 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You should use register_meta to add the meta field to the rest controller. Here the example from the link to expose the field my_meta of the custom post type my_article:

register_meta('post', 'my_meta', [
  'object_subtype' => 'my_article',
  'show_in_rest' => true
]);
发布评论

评论列表(0)

  1. 暂无评论