diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 44307fae60..b1da6f109f 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -681,6 +681,24 @@ class WP_Tax_Query { */ public $queried_terms = array(); + /** + * Database table that where the metadata's objects are stored (eg $wpdb->users). + * + * @since 4.1.0 + * @access public + * @var string + */ + public $primary_table; + + /** + * Column in primary_table that represents the ID of the object. + * + * @since 4.1.0 + * @access public + * @var string + */ + public $primary_id_column; + /** * Constructor. * diff --git a/wp-includes/version.php b/wp-includes/version.php index 3c4026ead5..e7bbc38540 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30183'; +$wp_version = '4.1-alpha-30184'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.