过滤器在那里,因此您不需要编辑wp-login.php
, 简单使用add_filter.
放置类似于
function change_password_reset_mail_body($message, $key, $user_login, $user_data) {
return "click here: " . network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), \'login\' );
}
add_filter("retrieve_password_message", "change_password_reset_mail_body", 10, 4)
在主题的功能中。php。