From a1b4295ba73549a27e55a1980224384de013520c Mon Sep 17 00:00:00 2001 From: Pascal Birchler Date: Fri, 24 Mar 2017 19:04:38 +0000 Subject: [PATCH] Taxonomy: Add missing REST API properties to `WP_Taxonomy` class. Props danielbachhuber. Fixes #39987. Merges [40303] to the 4.7 branch. Built from https://develop.svn.wordpress.org/branches/4.7@40328 git-svn-id: http://core.svn.wordpress.org/branches/4.7@40235 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-taxonomy.php | 35 +++++++++++++++++++++++++++++++ wp-includes/version.php | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-wp-taxonomy.php b/wp-includes/class-wp-taxonomy.php index 3a69b76551..12ed598720 100644 --- a/wp-includes/class-wp-taxonomy.php +++ b/wp-includes/class-wp-taxonomy.php @@ -186,6 +186,38 @@ final class WP_Taxonomy { */ public $update_count_callback; + /** + * Whether this taxonomy 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 taxonomy's REST API endpoints. + * + * @since 4.7.4 + * @access public + * @var string|bool $rest_base + */ + public $rest_base; + + /** + * The controller for this taxonomy'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; + /** * Whether it is a built-in taxonomy. * @@ -254,6 +286,9 @@ final class WP_Taxonomy { 'rewrite' => true, 'query_var' => $this->name, 'update_count_callback' => '', + 'show_in_rest' => false, + 'rest_base' => false, + 'rest_controller_class' => false, '_builtin' => false, ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 58e9dd614e..afe63340b2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7.4-alpha-40327'; +$wp_version = '4.7.4-alpha-40328'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.