pre_category_nicename хук-фильтр . WP 2.0.3
Filters the category nicename before it is sanitized.
Use the {@see 'pre_$taxonomy_$field'} hook instead.
Использование
add_filter( 'pre_category_nicename', 'filter_function_name_1067' ); function filter_function_name_1067( $value ){ // filter... return $value; }
- $value(строка)
- The category nicename.
Список изменений
С версии 2.0.3 | Введена. |
Где вызывается хук
pre_category_nicename
wp-includes/taxonomy.php 1664
$value = apply_filters( 'pre_category_nicename', $value );