Добавление post_parent к определенному типу поста в Wordpress Rest Api - PullRequest
0 голосов
/ 30 ноября 2018

Как мы можем добавить поле post_parent к определенному типу записи в WordPress?

1 Ответ

0 голосов
/ 30 ноября 2018

Используйте следующий код, чтобы добавить post_perent

add_action( 'rest_api_init', array( $this, 'add_post_parent_to_posts_route' ) );

function add_post_parent_to_posts_route() {
        $args = array(
            'get_callback'    => array( $this, 'get_post_parent' ),
            'update_callback' => array( $this, 'set_post_parent' ),
            'schema'          => null,
        );
        register_rest_field( 'post', 'parent', $args );
        register_rest_field( 'attachment', 'parent', $args );
    }
    function get_post_parent( $data ) {
        $post = get_post( $data['id'] );
        return $post->post_parent;
    }
    function set_post_parent( $value, $post, $attr, $request, $object_type ) {
        //permission to edit built-in post types is handled for us
        wp_update_post(
            array(
                'ID'          => $post->ID,
                'post_parent' => $value,
            )
        );
    }

Протестировано и хорошо работает.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...