WP REST APIは投稿タイプから投稿を取得します


15

WP REST API(v1またはv2)を使用して特定のカスタム投稿タイプからすべての投稿を取得するにはどうすればよいですか?私はこれに非常に新しく、それを行う方法を理解しようとしています。

私は現在WP REST API v2を使用しており、これですべての投稿タイプのリストを取得することができました

http://domain.com/wp-json/wp/v2/types

そして、私が興味のある投稿タイプを取得することができました

http://domain.com/wp-json/wp/v2/types/the-icons-update

特定のコンテンツタイプからすべての投稿を取得するにはどうすればよいですか?

私が試しました

http://domain.com/wp-json/wp/v2/posts?filter[post_type]=the-icons-update

しかし、それは空の配列を返します(デフォルトの投稿を返し、私のサイトには、取得しようとしているカスタム投稿タイプ内の投稿しかありません)。

投稿タイプの登録方法に問題がありますか?

function custom_post_type() {
$labels = array(
    'name'               => _x( 'The Icons Update', 'post type general name' ),
    'singular_name'      => _x( 'The Icons Update', 'post type singular name' ),
    'add_new'            => _x( 'Add Page', 'magazine' ),
    'add_new_item'       => __( 'Add New Page' ),
    'edit_item'          => __( 'Edit Page' ),
    'new_item'           => __( 'New Page' ),
    'all_items'          => __( 'All Pages' ),
    'view_item'          => __( 'View Page' ),
    'search_items'       => __( 'Search Pages' ),
    'not_found'          => __( 'No Page found' ),
    'not_found_in_trash' => __( 'No Page found in the Trash' ), 
    'parent_item_colon'  => '',
    'menu_icon'          => '',
    'menu_name'          => 'The Icons Update'
);
$args = array(
    'labels'        => $labels,
    'description'   => 'Holds our projects and project specific data',
    'public'        => true,
    'menu_position' => 5,
    'supports'      => array( 'title', 'editor', 'thumbnail', 'excerpt', 'custom-fields' ),
    'has_archive'   => true,
    'taxonomies'    => array('post_tag', 'category'),
    'hierarchical'  => false,
    'query_var'     => true,
    'queryable' => true,
        'searchable'    => true,
    'rewrite'       => array( 'slug' => 'the-icons-update' )
);
register_post_type( 'magazine', $args );
flush_rewrite_rules();
}
add_action( 'init', 'custom_post_type' );

これに関する助けは本当にありがたいです。

回答:


18

次のパラメーターを関数register_post_typeに追加するだけで、「menu_position」パラメーターの前にすることができます。'show_in_rest' => true

ここに画像の説明を入力してください

プラグインを使用してposttypeを登録している場合は、次のコードを使用できます。

add_action( 'init', 'add_anuncios_to_json_api', 30 );
function add_anuncios_to_json_api(){
    global $wp_post_types;
    $wp_post_types['anuncio']->show_in_rest = true;
}

その後、mydomain.com / wp-json / wp / v2 / posttype_slugから投稿を一覧表示できるようになります

私の場合:mydomain.com/wp-json/wp/v2/anuncio

次のコードを使用して新しいベースを登録することもできます。

add_action( 'init', 'add_anuncios_to_json_api', 30 );
function add_anuncios_to_json_api(){
    global $wp_post_types;
    $wp_post_types['anuncio']->show_in_rest = true;
    $wp_post_types['anuncio']->rest_base = 'clasi';
    $wp_post_types['anuncio']->rest_controller_class = 'WP_REST_Posts_Controller';
}

anuncio投稿タイプのスラッグを置き換えるだけで、「clasi」がルートになります。mydomain.com/wp-json/wp/v2/clasi


ありがとう、これは私の問題をほとんど解決しました!その特定の投稿タイプからいくつかの投稿を取得しましたが、すべてが表示されず、データも完全ではありません。たとえば、カテゴリが一覧表示されず、高度なカスタムフィールドも一覧表示する必要があります(WP REST API v1.2.3 ACFを表示させることができました)。これにご協力いただきありがとうございます
ジェフ

4

バージョン2でカスタム投稿タイプを表示するに'show_in_rest' => trueは、register_post_type関数の引数を追加する必要があります。その場合、そのカスタム投稿タイプの投稿はエンドポイントで利用可能になります:wp-json / wp / v2 / your-custom-post-type

ソース:http : //scottbolinger.com/custom-post-types-wp-api-v2/


0

これを使用する必要があります:-

http://domain.com/wp-json/wp/v2/posts?job-type=your-post-type 

それがうまくいくことを願っています:)


返信ありがとうございましたが、うまくいきませんでした:(
ジェフ

カスタム分類を登録するときにquery_varをfalseに設定した場合、パラメーターを次のように変更する必要があることに注意してください:wp-json / wp / v2 / posts /?taxonomy = job-type&term = manager(単なる例)
開発

ありがとうございますが、うまくいきませんでした。カスタム投稿タイプの登録方法に問題がありますか?私は質問を更新しました、あなたがそれを見ることができれば、私は非常に感謝します
ジェフ

はいちょうどチェックし、更新の答え
devの

0

OKここに私の完全な答えがあります:-

function prefix_register_post_type()
{
  register_post_type(
    'prefix_portfolio',
    array(
      'labels'        => array(
        'name'               => __('Portfolio', 'text_domain'),
        'singular_name'      => __('Portfolio', 'text_domain'),
        'menu_name'          => __('Portfolio', 'text_domain'),
        'name_admin_bar'     => __('Portfolio Item', 'text_domain'),
        'all_items'          => __('All Items', 'text_domain'),
        'add_new'            => _x('Add New', 'prefix_portfolio', 'text_domain'),
        'add_new_item'       => __('Add New Item', 'text_domain'),
        'edit_item'          => __('Edit Item', 'text_domain'),
        'new_item'           => __('New Item', 'text_domain'),
        'view_item'          => __('View Item', 'text_domain'),
        'search_items'       => __('Search Items', 'text_domain'),
        'not_found'          => __('No items found.', 'text_domain'),
        'not_found_in_trash' => __('No items found in Trash.', 'text_domain'),
        'parent_item_colon'  => __('Parent Items:', 'text_domain'),
      ),
      'public'        => true,
      'menu_position' => 5,
      'supports'      => array(
        'title',
        'editor',
        'thumbnail',
        'excerpt',
        'custom-fields',
      ),
      'taxonomies'    => array(
        'prefix_portfolio_categories',
      ),
      'has_archive'   => true,
      'rewrite'       => array(
        'slug' => 'portfolio',
      ),
    )
  );
}

add_action('init', 'prefix_register_post_type');


function prefix_register_taxonomy()
{
  register_taxonomy(
    'prefix_portfolio_categories',
    array(
      'prefix_portfolio',
    ),
    array(
      'labels'            => array(
        'name'              => _x('Categories', 'prefix_portfolio', 'text_domain'),
        'singular_name'     => _x('Category', 'prefix_portfolio', 'text_domain'),
        'menu_name'         => __('Categories', 'text_domain'),
        'all_items'         => __('All Categories', 'text_domain'),
        'edit_item'         => __('Edit Category', 'text_domain'),
        'view_item'         => __('View Category', 'text_domain'),
        'update_item'       => __('Update Category', 'text_domain'),
        'add_new_item'      => __('Add New Category', 'text_domain'),
        'new_item_name'     => __('New Category Name', 'text_domain'),
        'parent_item'       => __('Parent Category', 'text_domain'),
        'parent_item_colon' => __('Parent Category:', 'text_domain'),
        'search_items'      => __('Search Categories', 'text_domain'),
      ),
      'show_admin_column' => true,
      'hierarchical'      => true,
      'rewrite'           => array(
        'slug' => 'portfolio/category',
      ),
    )
  );
}

add_action('init', 'prefix_register_taxonomy', 0);

カスタム投稿を登録する際に、分類法も登録する必要があります。

この後、リクエストは次のようになります。

wp-json/wp/v2/posts/?taxonomy=prefix_portfolio_categories'&term=your-any-category

これがあなたを助けるかもしれないことを願っています:)


これについてのあなたの努力に感謝しますが、残念ながらそれもうまくいきませんでした。私はかなり近いと確信していますが、問題の原因はわかりません。再度ありがとう
ジェフ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.