wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



global_terms › WordPress Function

Seit3.0.0
Veraltet6.1.0
global_terms ( $term_id, $deprecated = '' )
Parameter: (2)
  • (int) $term_id An ID for a term on the current blog.
    Erforderlich: Ja
  • (string) $deprecated Not used.
    Erforderlich: Nein
    Standard: (leer)
Gibt zurück:
  • (int) An ID from the global terms table mapped from $term_id.
Definiert in:
Codex:
Changelog:
  • 6.1.0

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



Quellcode

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

	return $term_id;
}