wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



global_terms › WordPress Function

Depuis3.0.0
Dépréciée6.1.0
global_terms ( $term_id, $deprecated = '' )
Paramètres: (2)
  • (int) $term_id An ID for a term on the current blog.
    Requis: Oui
  • (string) $deprecated Not used.
    Requis: Non
    Défaut: (vide)
Retourne:
  • (int) An ID from the global terms table mapped from $term_id.
Défini(e) dans:
Codex:
Changelog:
  • 6.1.0

Maintains a canonical list of terms by syncing terms created for each blog with the global terms table.



Source

function global_terms( $term_id, $deprecated = '' ) {
	_deprecated_function( __FUNCTION__, '6.1.0' );

	return $term_id;
}