wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



global_terms › WordPress Function

Desde3.0.0
Obsoleto6.1.0
global_terms ( $term_id, $deprecated = '' )
Parâmetros: (2)
  • (int) $term_id An ID for a term on the current blog.
    Required: Yes
  • (string) $deprecated Not used.
    Required: No
    Padrão: (empty)
Retorna:
  • (int) An ID from the global terms table mapped from $term_id.
Definido em:
Codex:
Log de mudanças:
  • 6.1.0

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



Fonte

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

	return $term_id;
}