WordPress创建post type自定义文章类型时添加rest api支持
如果你需要用 WordPress 的 rest api 做小程序或者 APP,那你很大概率会用到 rest a…
如果你需要用 WordPress 的 rest api 做小程序或者 APP,那你很大概率会用到 rest api,那么 WordPress 创建 post type 自定义文章类型时添加 rest api 支持呢?通常情况下注册的 post type 是并不能支持 rest api 访问的,你需要做额外的设置。,下面是实例代码:
-
/**
-
* 创建post type时添加rest api支持
-
*
-
*/
-
add_action( 'init', 'my_book_cpt' );
-
function my_book_cpt() {
-
$labels = array(
-
'name' => _x( 'Books', 'post type general name', 'your-plugin-textdomain' ),
-
'singular_name' => _x( 'Book', 'post type singular name', 'your-plugin-textdomain' ),
-
'menu_name' => _x( 'Books', 'admin menu', 'your-plugin-textdomain' ),
-
'name_admin_bar' => _x( 'Book', 'add new on admin bar', 'your-plugin-textdomain' ),
-
'add_new' => _x( 'Add New', 'book', 'your-plugin-textdomain' ),
-
'add_new_item' => __( 'Add New Book', 'your-plugin-textdomain' ),
-
'new_item' => __( 'New Book', 'your-plugin-textdomain' ),
-
'edit_item' => __( 'Edit Book', 'your-plugin-textdomain' ),
-
'view_item' => __( 'View Book', 'your-plugin-textdomain' ),
-
'all_items' => __( 'All Books', 'your-plugin-textdomain' ),
-
'search_items' => __( 'Search Books', 'your-plugin-textdomain' ),
-
'parent_item_colon' => __( 'Parent Books:', 'your-plugin-textdomain' ),
-
'not_found' => __( 'No books found.', 'your-plugin-textdomain' ),
-
'not_found_in_trash' => __( 'No books found in Trash.', 'your-plugin-textdomain' )
-
);
-
-
$args = array(
-
'labels' => $labels,
-
'description' => __( 'Description.', 'your-plugin-textdomain' ),
-
'public' => true,
-
'publicly_queryable' => true,
-
'show_ui' => true,
-
'show_in_menu' => true,
-
'query_var' => true,
-
'rewrite' => array( 'slug' => 'book' ),
-
'capability_type' => 'post',
-
'has_archive' => true,
-
'hierarchical' => false,
-
'menu_position' => null,
-
'show_in_rest' => true,
-
'rest_base' => 'books',
-
'rest_controller_class' => 'WP_REST_Posts_Controller',
-
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
-
);
-
-
register_post_type( 'book', $args );
-
}
类别:WordPress教程、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!