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



sync_category_tag_slugs › WordPress Function

Seit3.0.0
Veraltet6.1.0
sync_category_tag_slugs ( $term, $taxonomy )
Parameter: (2)
  • (WP_Term|array) $term The term.
    Erforderlich: Ja
  • (string) $taxonomy The taxonomy for `$term`.
    Erforderlich: Ja
Gibt zurück:
  • (WP_Term|array) Always returns `$term`.
Definiert in:
Codex:
Changelog:
  • 6.1.0

Synchronizes category and post tag slugs when global terms are enabled.



Quellcode

function sync_category_tag_slugs( $term, $taxonomy ) {
	_deprecated_function( __FUNCTION__, '6.1.0' );

	return $term;
}