Make WordPress Core


Ignore:
Timestamp:
10/11/2016 01:55:58 AM (9 years ago)
Author:
boonebgorges
Message:

Taxonomy: Better error handling when fetching object terms from cache.

Since [37573], get_object_term_cache() has expected term IDs to be
stored in the taxonomy relationship cache. The function would then
reach directly into the 'terms' cache to fetch the data corresponding
to a given term, before returning a WP_Term object. This caused
problems when, for one reason or another, term data was cached
inconsistently:

  • If the 'terms' cache is empty for a given term ID, despite the earlier call to _prime_term_caches(), get_term() would return an error object.
  • If the array of cached term IDs contains an invalid ID, get_term() would return an error object.

We avoid these errors by no longer touching the 'terms' cache directly,
but running term IDs through get_term() and allowing that function to
reference the cache (and database, as needed). If get_term() returns
an error object for any of the cached term IDs, get_object_term_cache()
will return that error object alone. This change ensures that upstream
functions, like get_the_terms(), return WP_Error objects in a
predictable fashion.

Props dd32, michalzuber.
Fixes #37291.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/taxonomy.php

    r38747 r38776  
    30113011 *
    30123012 * @since 2.3.0
     3013 * @since 4.6.2 Returns a WP_Error object if get_term() returns an error for
     3014 *              any of the matched terms.
    30133015 *
    30143016 * @param int    $id       Term object ID.
    30153017 * @param string $taxonomy Taxonomy name.
    3016  * @return bool|array Array of `WP_Term` objects, if cached False if cache is empty for `$taxonomy` and `$id`.
     3018 * @return bool|array|WP_Error Array of `WP_Term` objects, if cached.
     3019 *                             False if cache is empty for `$taxonomy` and `$id`.
     3020 *                             WP_Error if get_term() returns an error object for any term.
    30173021 */
    30183022function get_object_term_cache( $id, $taxonomy ) {
     
    30393043    $terms = array();
    30403044    foreach ( $term_ids as $term_id ) {
    3041         $terms[] = wp_cache_get( $term_id, 'terms' );
    3042     }
    3043 
    3044     return array_map( 'get_term', $terms );
     3045        $term = get_term( $term_id );
     3046        if ( is_wp_error( $term ) ) {
     3047            return $term;
     3048        }
     3049
     3050        $terms[] = $term;
     3051    }
     3052
     3053    return $terms;
    30453054}
    30463055
Note: See TracChangeset for help on using the changeset viewer.