unregister_term_meta( string $taxonomy, string $meta_key )

Unregisters a meta key for terms.


Description Description


Parameters Parameters

$taxonomy

(string) (Required) Taxonomy the meta key is currently registered for. Pass an empty string if the meta key is registered across all existing taxonomies.

$meta_key

(string) (Required) The meta key to unregister.


Top ↑

Return Return

(bool) True on success, false if the meta key was not previously registered.


Top ↑

Source Source

File: wp-includes/taxonomy.php

function unregister_term_meta( $taxonomy, $meta_key ) {
	return unregister_meta_key( 'term', $meta_key, $taxonomy );
}

Top ↑

Changelog Changelog

Changelog
Version Description
4.9.8 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.