get_the_author_(field) хук-фильтр . WP 2.8.0
Filters the value of the requested user metadata.
The filter name is dynamic and depends on the $field parameter of the function.
Использование
add_filter( 'get_the_author_(field)', 'filter_function_name_5419', 10, 3 ); function filter_function_name_5419( $value, $user_id, $original_user_id ){ // filter... return $value; }
- $value(строка)
- The value of the metadata.
- $user_id(число)
- The user ID for the value.
- $original_user_id(число/false)
- The original user ID, as passed to the function.
Список изменений
С версии 2.8.0 | Введена. |
С версии 4.3.0 | The $original_user_id parameter was added. |
Где вызывается хук
get_the_author_(field)
wp-includes/author-template.php 189
return apply_filters( "get_the_author_{$field}", $value, $user_id, $original_user_id );