我使用rest api获得自定义元字段,但无法创建或更新。
我不是一个程序员,我在不同的网站上尝试了不同的解决方案,但都不起作用。我使用了postman,新的post创建是可以的,但没有创建自定义元字段。
示例:
add_action( \'rest_api_init\', \'create_api_posts_meta_field\' );
function create_api_posts_meta_field() {
// register_rest_field ( \'name-of-post-type\', \'name-of-field-to-return\', array-of-callbacks-and-schema() )
register_rest_field( \'job_listing\', \'post-meta-fields\', array(
\'get_callback\' => \'get_post_meta_for_api\',
\'update_callback\' => \'update_post_meta_for_api\',
\'schema\' => null,
)
);
}
function get_post_meta_for_api( $object, $meta_value ) {
//get the id of the post object array
$post_id = $object[\'id\'];
$meta = get_post_meta( $post_id );
if ( isset( $meta[\'_date-start\' ] ) && isset( $meta[\'_date-start\' ][0] ) ) {
//return the post meta
return $meta[\'_date-start\' ][0];
} else {
update_post_meta( $meta, \'_date-start\', $meta_value ,true );
}
// meta not found
return false;
}