sync_category_tag_slugs() – Synchronizes category and post tag slugs when global terms are enabled.

You appear to be a bot. Output may be restricted

Description

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

Usage

$WP_Term|array = sync_category_tag_slugs( $term, $taxonomy );

Parameters

$term
( WP_Term|array ) required – The term.
$taxonomy
( string ) required – The taxonomy for `$term`.

Returns

WP_Term|array Always returns `$term`.

Source

File name: wordpress/wp-admin/includes/ms-deprecated.php


Lines:

1 to 6 of 6
function sync_category_tag_slugs( $term, $taxonomy ) {
  _deprecated_function( sync_category_tag_slugs, '6.1.0' );

  return $term;
}
 

 View on GitHub View on Trac