ฉันจะรับโพสต์ทั้งหมดจากประเภทโพสต์ที่กำหนดเองเฉพาะด้วย 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' );
ความช่วยเหลือใด ๆ กับเรื่องนี้เป็นที่ชื่นชมจริงๆ