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' );

我们对此表示任何帮助。

Answers:


18

只需将下一个参数添加到函数register_post_type中,它可以在'menu_position'参数之前。'show_in_rest'=>是

在此处输入图片说明

如果您使用的是插件来注册自己的帖子类型,则可以使用以下代码:

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您的帖子类型“ slug”,“ clasi”将是您的路线。mydomain.com/wp-json/wp/v2/clasi


谢谢,这几乎解决了我的问题!现在,我从该特定帖子类型中获得了一些帖子,但是并非所有帖子都出现并且它们的数据也不完整,例如,类别未列出,并且我还需要列出高级自定义字段(在WP REST API v1.2.3中)我设法使ACF出现)。感谢您的帮助在此
杰夫


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

谢谢,但是也没有用。我如何注册自定义帖子类型会出现问题吗?我已经更新了问题,如果您能看一看,我将非常感谢
Jeff

是的,刚刚检查了更新的答案
2015年

0

好的,这是我的完整答案:

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

希望这可以对您有所帮助:)


感谢您为这一工作付出的一百万美元,但不幸的是,这也不起作用。我敢肯定我已经很接近了,但我不明白问题可能出在哪里。再次感谢您
Jeff
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.