wp_unique_term_slug
Filters the unique term slug.
Description
Parameters (3)
- 0. $slug (string)
- Unique term slug.
- 1. $term (object)
- Term object.
- 2. $original_slug (string)
- Slug originally passed to the function for testing.
Usage
- To run the hook, copy the example below.
- $slug = apply_filters( 'wp_unique_term_slug', $slug, $term, $original_slug );
- if ( !empty( $slug ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the wp_unique_term_slug callback
- function filter_wp_unique_term_slug( $slug, $term, $original_slug ) {
- // make filter magic happen here...
- return $slug;
- };
- // add the filter
- add_filter( 'wp_unique_term_slug', 'filter_wp_unique_term_slug', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'wp_unique_term_slug', 'filter_wp_unique_term_slug', 10, 3 );
Defined (1)
The filter is defined in the following location(s).
- /wp-includes/taxonomy.php
- return apply_filters( 'wp_unique_term_slug', $slug, $term, $original_slug );