user_request_action_description хук-фильтр . WP 4.9.6
Filters the user action description.
Использование
add_filter( 'user_request_action_description', 'filter_function_name_8114', 10, 2 ); function filter_function_name_8114( $description, $action_name ){ // filter... return $description; }
- $description(строка)
- The default description.
- $action_name(строка)
- The name of the request.
Список изменений
С версии 4.9.6 | Введена. |
Где вызывается хук
user_request_action_description
wp-includes/user.php 3857
return apply_filters( 'user_request_action_description', $description, $action_name );