wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



global_terms › WordPress Function

Da3.0.0
Deprecato6.1.0
global_terms ( $term_id, $deprecated = '' )
Parametri: (2)
  • (int) $term_id An ID for a term on the current blog.
    Richiesto:
  • (string) $deprecated Not used.
    Richiesto: No
    Default: (vuoto)
Ritorna:
  • (int) An ID from the global terms table mapped from $term_id.
Definito a:
Codex:
ChangeLog:
  • 6.1.0

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



Sorgenti

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

	return $term_id;
}