wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



sync_category_tag_slugs › WordPress Function

Od3.0.0
Przestarzały6.1.0
sync_category_tag_slugs ( $term, $taxonomy )
Parametry: (2)
  • (WP_Term|array) $term The term.
    Wymagane: Tak
  • (string) $taxonomy The taxonomy for `$term`.
    Wymagane: Tak
Powrót:
  • (WP_Term|array) Always returns `$term`.
Zdefiniowane na:
Codex:
Dziennik zmian:
  • 6.1.0

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



Źródło

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

	return $term;
}