has_term_meta( int $term_id )

Get all meta data, including meta IDs, for the given term ID.


Parameters

$term_id

(int) (Required) Term ID.


Return

(array|false) Array with meta data, or false when the meta table is not installed.


Source

File: wp-includes/taxonomy.php

function has_term_meta( $term_id ) {
	// Bail if term meta table is not installed.
	if ( get_option( 'db_version' ) < 34370 ) {
		return false;
	}

	global $wpdb;

	return $wpdb->get_results( $wpdb->prepare( "SELECT meta_key, meta_value, meta_id, term_id FROM $wpdb->termmeta WHERE term_id = %d ORDER BY meta_key,meta_id", $term_id ), ARRAY_A );
}


Changelog

Changelog
Version Description
WP-4.9.0 Introduced.