如何使用REST API获取自定义帖子元
我正在尝试为我的wordpress网站创建一个REST API,该网站用于使用wordpress作业管理器插件进行设施列表。 我已经在\ plugins \ rest-api \ plugin.php中注册了我的自定义帖子,分类法。 下面的API给了我所有带有默认响应的列表。 http:// localhost / sports / wp-json / wp / v2 / joblisting / 我想使用以下代码在JSON响应中添加post meta。 function slug_register_phone_number() { register_rest_field( 'job_listing', 'phone', array( 'get_callback' => 'slug_get_phone_number', 'update_callback' => null, 'schema' => null, ) ); } function slug_get_phone_number($post, $field_name, $request) { return get_post_meta($post->id, …