私は本当にWordPressプログラミングが初めてなので、この機能が存在するかどうかさえわかりません。私がやろうとしているのは、管理者が自分のパスワード/ Eメールを変更したときにEメールを(管理者ではなく)ユーザーに送信することです。
現時点で新しいユーザーを追加すると、そのユーザーにEメールが送信されますが、そのパスワード/ Eメールを変更してもそのEメールは送信されません。
私はここでどんな援助にでも本当に感謝するでしょう。
次のフローラインを使用してこの機能を追加する1つの方法があります。
The admin updates the user option page:
-> edit_user_profile_update or personal_options_update hooks activated
-> edit_user() function is called
-> wp_update_user() function is called within edit_user()
-> wp_insert_user() function is called within wp_update_user()
-> profile_update hook activated within wp_insert_user()
for user updates, not user inserts
-> wp_redirect() function called on successful user updates
-> wp_redirect filter activated
-> The page reloads
-> admin_notices hook activated
まず、パスワードテキストフィールドの上に 通知を送信する チェックボックスを追加します。これは管理者にのみ表示されます。
show_password_fields
フィルタをハイジャックすることによって:
add_filter( 'show_password_fields', 'wpse_notification_html' );
function wpse_notification_html( $show )
{
if( current_user_can( 'manage_options' ) ):
?>
<tr>
<th scope="row">
<label for="wpse_send_notification"><?php _e('Send a notification?') ?></label>
</th>
<td>
<label for="wpse_send_notification">
<input type="checkbox" name="wpse_send_notification" id="wpse_send_notification" value="1" />
<?php _e( 'Send an email to user and notify that the password has changed.' ); ?>
</label>
</td>
</tr>
<?php
endif;
return $show;
}
次に、 ユーザーオプション ページからprofile_update
にフックします。
add_action( 'edit_user_profile_update', 'wpse_user_update' );
add_action( 'personal_options_update', 'wpse_user_update' );
function wpse_user_update( $user_id )
{
if( current_user_can( 'manage_options' ) )
add_action( 'profile_update', 'wpse_controller', 10, 2 );
}
メインロジックはwpse_controller()
関数にあります。
function wpse_controller( $user_id, $old_user_data )
{
// Input:
$pass1 = filter_input( INPUT_POST, 'pass1' );
$pass2 = filter_input( INPUT_POST, 'pass2' );
$send = filter_input( INPUT_POST, 'wpse_send_notification', FILTER_SANITIZE_NUMBER_INT );
// Run this action only once:
remove_action( current_action(), __FUNCTION__ );
// Send the notification:
if( 1 == $send )
{
if( ! empty( $pass1 )
&& $pass1 === $pass2
&& sanitize_text_field( $pass1 ) === $pass1
):
if( wpse_user_password_notification( $user_id, wp_unslash( sanitize_text_field( $pass1 ) ) ) )
add_filter( 'wp_redirect', 'wpse_redirect_notification_success' );
else
add_filter( 'wp_redirect', 'wpse_redirect_notification_error' );
else:
add_filter( 'wp_redirect', 'wpse_redirect_pass_validation_error' );
endif;
}
}
それからすべての検証が行われたからです。
WordPressはユーザーオプションページが更新されたときに redirect を使用するので、エラー/成功メッセージを表示するのは少しややこしいです。そのため、wp_redirect
フィルタを使って適切なクエリ変数を追加し、admin_notices
フックからメッセージを判断できるようにします。
function wpse_redirect_notification_success( $location )
{
return add_query_arg( 'wpse_notification', 'mail_success', $location );
}
function wpse_redirect_notification_error( $location )
{
return add_query_arg( 'wpse_notification', 'mail_error', $location );
}
function wpse_redirect_pass_validation_error( $location )
{
return add_query_arg( 'wpse_notification', 'pass_validation_error', $location );
}
電子メールを送信するために、コアのwp_new_user_notification()
関数の修正を使用します。
function wpse_user_password_notification( $user_id, $plaintext_pass = '' )
{
if ( empty( $plaintext_pass ) )
return false;
$user = get_userdata( $user_id );
$blogname = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
$message = sprintf( __( 'Username: %s' ), $user->user_login ) . "\r\n";
$message .= sprintf( __( 'New Password: %s' ), $plaintext_pass ) . "\r\n";
$message .= wp_login_url() . "\r\n";
return wp_mail( $user->user_email, sprintf(__('[%s] Your username and new password'), $blogname), $message );
}
wp_notices
フィルタに追加されたwp_redirect
クエリ変数によって決定される、以下の管理者通知を使用します。
add_action( 'admin_notices', 'wpse_admin_notices' );
function wpse_admin_notices()
{
$status = filter_input( INPUT_GET, 'wpse_notification', FILTER_SANITIZE_STRING );
switch ( $status )
{
case 'mail_success':
?><div id="message" class="updated"><p><strong>Notification Sent!</strong>: Notification email successfully sent to the user</p></div><?php
break;
case 'mail_error':
?><div class="error"><p><strong>ERROR</strong>: Notification email not sent to the user</p></div><?php
break;
case 'pass_validation_error':
?><div class="error"><p><strong>ERROR</strong>: Notification email not sent to the user, because of symbol chars in the password </p></div><?php
break;
} // end switch
}
私は sanitize_text_field()
を使って電子メールのパスワードをサニタイズすることに注意してください。最善の方法がわからない。少なくとも私はそれを電子メールで生で送りたくありませんでした。これが、この追加のエラーメッセージの理由です。
そのため、パスワードにsanitize_text_field()
関数で削除される文字が含まれている場合にも対処できます。他のアイデアは歓迎されています。
シモンズ:これは実験的なもので、調整が必要かもしれません。上記のコードはすべて手続き型で、無名関数はありません。いくつかのOOPバターを塗ることでもっと簡単になるかもしれません;-)
これを実現する方法はいくつかあります。
1)[簡単]ログイン画面にあなたのユーザーを送り、彼らにパスワード忘れプロセスを開始させます
2)[中程度]無料のWordPressプラグイン(いくつかあります)、 これは役に立ちそうです または、検索できます http://wordpress.org/plugins/search.php?q=reset+password そしておそらく多くの商用のもの、 しかし、ここに1つあります
3)[hard]独自のプラグインでカスタム関数を書く - そのために WordPress Codexを参照することができます そして ここでも妥当なチュートリアルのようです
WordPress 4.3.0以降、これに対するフィルタがあります(user.php
にあります)。
add_filter('send_password_change_email', function( $send, $user, $userdata ){
// bail early if $send is false
if( !$send ) {
return $send;
}
// Your custom email logic
// ...
// tell wordpress not to send the built-in email
return false;
}, 10, 3);