REST响应中的ACF附件自定义域

时间:2019-01-21 作者:fefe

我为media uploader创建了一个额外的select option ACF字段,我想在Gutenberg MediaUploader onSelect中检索相关值。

enter image description here这个案子有解决办法吗?

1 个回复
SO网友:Ryan DiMascio

查看ACF到REST API-https://github.com/airesvsg/acf-to-rest-api

您可以选择打开/关闭要启用的字段。

// Enable the option show in rest
add_filter( \'acf/rest_api/field_settings/show_in_rest\', \'__return_true\' );

// Enable the option edit in rest
add_filter( \'acf/rest_api/field_settings/edit_in_rest\', \'__return_true\' );