Get cached terms from wc_get_related_terms()
This commit is contained in:
parent
f5c42c60c8
commit
ee82a198da
|
@ -851,7 +851,7 @@ function wc_get_related_products( $product_id, $limit = 5, $exclude_ids = array(
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
function wc_get_related_terms( $product_id, $taxonomy ) {
|
function wc_get_related_terms( $product_id, $taxonomy ) {
|
||||||
$terms = apply_filters( 'woocommerce_get_related_' . $taxonomy . '_terms', wp_get_post_terms( $product_id, $term ), $product_id );
|
$terms = apply_filters( 'woocommerce_get_related_' . $taxonomy . '_terms', get_the_terms( $product_id, $term ), $product_id );
|
||||||
|
|
||||||
return array_map( 'absint', wp_list_pluck( $terms, 'term_id' ) );
|
return array_map( 'absint', wp_list_pluck( $terms, 'term_id' ) );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue