wpseek.com
A WordPress-centric search engine for devs and theme authors



global_terms › WordPress Function

Since3.0.0
Deprecated6.1.0
global_terms ( $term_id, $deprecated = '' )
Parameters: (2)
  • (int) $term_id An ID for a term on the current blog.
    Required: Yes
  • (string) $deprecated Not used.
    Required: No
    Default: (empty)
Returns:
  • (int) An ID from the global terms table mapped from $term_id.
Defined at:
Codex:
Change Log:
  • 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;
}