gpt4 book ai didi

php - WP REST API 从帖子类型中获取帖子

转载 作者:可可西里 更新时间:2023-11-01 12:31:47 25 4
gpt4 key购买 nike

如何使用 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' );

非常感谢任何帮助。

最佳答案

v.2 有一个非常简单的方法。您所要做的就是在您的 args 数组中包含以下属性:'show_in_rest' => true

例子:

register_post_type( 'recipe',
array(
'labels' => $labels,
'public' => true,
'menu_position' => 5,
'hierarchical' => false,
'supports' => $supports,
'show_in_rest' => true,
'taxonomies' => array('recipe-type', 'post_tag'),
'rewrite' => array( 'slug' => __('recipe', 'recipe') )
)
);

关于php - WP REST API 从帖子类型中获取帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32393967/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com