pre_category_nicename filter-hook . WP 2.0.3
Filters the category nicename before it is sanitized.
Use the {@see 'pre_$taxonomy_$field'} hook instead.
Usage
add_filter( 'pre_category_nicename', 'filter_function_name_4117' ); function filter_function_name_4117( $value ){ // filter... return $value; }
- $value(string)
- The category nicename.
Changelog
Since 2.0.3 | Introduced. |
Where the hook is called
pre_category_nicename
wp-includes/taxonomy.php 1664
$value = apply_filters( 'pre_category_nicename', $value );