update_welcome_user_subject хук-фильтр . WP 3.0.0
Filters the subject of the welcome email after user activation.
Использование
add_filter( 'update_welcome_user_subject', 'filter_function_name_4676' ); function filter_function_name_4676( $subject ){ // filter... return $subject; }
- $subject(строка)
- Subject of the email.
Список изменений
С версии 3.0.0 | Введена. |
Где вызывается хук
wp-includes/ms-functions.php 1893
$subject = apply_filters( 'update_welcome_user_subject', sprintf( $subject, $current_network->site_name, $user->user_login ) );