mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
623e467712
`get_term()` now returns a `WP_Term` object, instead of a `stdClass` object. Cache support and sanitization filters for individual terms are now more centralized. For example, `get_term_by()` is able to cast results of its query to a `WP_Term` object by passing it through `get_term()`. The `$taxonomy` parameter for `get_term()` is now optional, as terms ought to be unique to a taxonomy (ie, shared terms no longer exist). In cases where `get_term()` detects that the term matching the specified term_id is from the wrong taxonomy, it checks to see if you've requested a shared term, and if so, it splits the term. This is used only for fallback purposes. The elimination of shared terms allows the caching strategy for terms to be simplified. Individual terms are now cached in a single 'terms' bucket. Props flixos90, boonebgorges, scribu, dipesh.kakadiya. See #14162. Built from https://develop.svn.wordpress.org/trunk@34997 git-svn-id: http://core.svn.wordpress.org/trunk@34962 1a063a9b-81f0-0310-95a4-ce76da25c4cd
18 lines
363 B
PHP
18 lines
363 B
PHP
<?php
|
|
/**
|
|
* Core Taxonomy API
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Taxonomy
|
|
* @since 2.3.0
|
|
*/
|
|
|
|
/** Core taxonomy functionality */
|
|
require_once( ABSPATH . WPINC . '/taxonomy-functions.php' );
|
|
|
|
/** WP_Term class */
|
|
require_once( ABSPATH . WPINC . '/class-wp-term.php' );
|
|
|
|
/** WP_Tax_Query class */
|
|
require_once( ABSPATH . WPINC . '/class-wp-tax-query.php' );
|