Posts, Post Types: Add missing REST API properties to WP_Post_Type
class.
Props danielbachhuber. Fixes #39986. git-svn-id: https://develop.svn.wordpress.org/trunk@40302 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c34a5bc8c9
commit
22fbd05106
@ -333,6 +333,38 @@ final class WP_Post_Type {
|
|||||||
*/
|
*/
|
||||||
public $supports;
|
public $supports;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether this post type should appear in the REST API.
|
||||||
|
*
|
||||||
|
* Default false. If true, standard endpoints will be registered with
|
||||||
|
* respect to $rest_base and $rest_controller_class.
|
||||||
|
*
|
||||||
|
* @since 4.7.4
|
||||||
|
* @access public
|
||||||
|
* @var bool $show_in_rest
|
||||||
|
*/
|
||||||
|
public $show_in_rest;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The base path for this post type's REST API endpoints.
|
||||||
|
*
|
||||||
|
* @since 4.7.4
|
||||||
|
* @access public
|
||||||
|
* @var string|bool $rest_base
|
||||||
|
*/
|
||||||
|
public $rest_base;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The controller for this post type's REST API endpoints.
|
||||||
|
*
|
||||||
|
* Custom controllers must extend WP_REST_Controller.
|
||||||
|
*
|
||||||
|
* @since 4.7.4
|
||||||
|
* @access public
|
||||||
|
* @var string|bool $rest_controller_class
|
||||||
|
*/
|
||||||
|
public $rest_controller_class;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
*
|
*
|
||||||
@ -379,31 +411,34 @@ final class WP_Post_Type {
|
|||||||
|
|
||||||
// Args prefixed with an underscore are reserved for internal use.
|
// Args prefixed with an underscore are reserved for internal use.
|
||||||
$defaults = array(
|
$defaults = array(
|
||||||
'labels' => array(),
|
'labels' => array(),
|
||||||
'description' => '',
|
'description' => '',
|
||||||
'public' => false,
|
'public' => false,
|
||||||
'hierarchical' => false,
|
'hierarchical' => false,
|
||||||
'exclude_from_search' => null,
|
'exclude_from_search' => null,
|
||||||
'publicly_queryable' => null,
|
'publicly_queryable' => null,
|
||||||
'show_ui' => null,
|
'show_ui' => null,
|
||||||
'show_in_menu' => null,
|
'show_in_menu' => null,
|
||||||
'show_in_nav_menus' => null,
|
'show_in_nav_menus' => null,
|
||||||
'show_in_admin_bar' => null,
|
'show_in_admin_bar' => null,
|
||||||
'menu_position' => null,
|
'menu_position' => null,
|
||||||
'menu_icon' => null,
|
'menu_icon' => null,
|
||||||
'capability_type' => 'post',
|
'capability_type' => 'post',
|
||||||
'capabilities' => array(),
|
'capabilities' => array(),
|
||||||
'map_meta_cap' => null,
|
'map_meta_cap' => null,
|
||||||
'supports' => array(),
|
'supports' => array(),
|
||||||
'register_meta_box_cb' => null,
|
'register_meta_box_cb' => null,
|
||||||
'taxonomies' => array(),
|
'taxonomies' => array(),
|
||||||
'has_archive' => false,
|
'has_archive' => false,
|
||||||
'rewrite' => true,
|
'rewrite' => true,
|
||||||
'query_var' => true,
|
'query_var' => true,
|
||||||
'can_export' => true,
|
'can_export' => true,
|
||||||
'delete_with_user' => null,
|
'delete_with_user' => null,
|
||||||
'_builtin' => false,
|
'show_in_rest' => false,
|
||||||
'_edit_link' => 'post.php?post=%d',
|
'rest_base' => false,
|
||||||
|
'rest_controller_class' => false,
|
||||||
|
'_builtin' => false,
|
||||||
|
'_edit_link' => 'post.php?post=%d',
|
||||||
);
|
);
|
||||||
|
|
||||||
$args = array_merge( $defaults, $args );
|
$args = array_merge( $defaults, $args );
|
||||||
|
Loading…
Reference in New Issue
Block a user