web-dev-qa-db-ja.com

WP REST APIが投稿タイプから投稿を取得する

WP REST AP​​I(v1またはv2)を使用して、特定のカスタム投稿タイプからすべての投稿を取得する方法を教えてください。私はこれに非常に慣れていないし、それを行う方法を理解しようとしています。

私は現在WP REST AP​​I 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' );

これで任意の助けは本当に感謝しています。

12
Jeff

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

enter image description here 

ポストタイプを登録するためにプラグインを使用している場合は、次のコードを使用できます。

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

15
Dioni Mercado

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

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

4
kabisote

あなたはこれを使用する必要があります -

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

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

0
dev

さて、ここで私の完全な答えです: -

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

これが役に立つことを願っています:)

0
dev