在 WP REST API 中获取帖子元

我想在我的 REST API 中显示自定义帖子类型的帖子元。我正在通过 slug 查询帖子


https://www.example.com/wp-json/wp/v2/event?slug=custom-post-slug

    add_filter( 'register_post_type_args', 'my_post_type_args', 10, 2 );


    function my_post_type_args( $args, $post_type ) {


        if ( 'event' === $post_type ) {

            $args['show_in_rest'] = true;


            // Optionally customize the rest_base or rest_controller_class

            $args['rest_base']             = 'event';

            $args['post__meta'] = get_post_meta( $post->ID, true );

            $args['rest_controller_class'] = 'WP_REST_Posts_Controller';

        }


        return $args;

    }


慕村9548890
浏览 111回答 1
1回答

繁花如伊

在使用该函数注册时,您应该将自定义帖子类型添加到 REST API register_post_type。在参数列表中,您会找到show_in_rest,rest_base和rest_controller_base( register_post_type doc )。然后,您可以使用register_rest_field函数(文档)向 API 添加元字段。有一个你需要做什么的例子: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( 'post', 'post-meta-fields', array(           'get_callback'    => 'get_post_meta_for_api',           'schema'          => null,        )    );}function get_post_meta_for_api( $object ) {    //get the id of the post object array    $post_id = $object['id'];    //return the post meta    return get_post_meta( $post_id );}只需将“帖子”替换为您的自定义帖子类型即可。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go