Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ssis/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
无法覆盖WordPress中的wp_new_user_通知_Wordpress - Fatal编程技术网

无法覆盖WordPress中的wp_new_user_通知

无法覆盖WordPress中的wp_new_user_通知,wordpress,Wordpress,我想自定义用户通知电子邮件模板,但无法覆盖wp\u new\u User\u通知。我已经试过把它放在/plugins/文件夹和其他选项中,但仍然不起作用,甚至标记的答案也不起作用。另外,我已经使用了不同的插件,但它仍然使用默认的电子邮件模板功能。这种技术在主题代码中不起作用。首先加载插件,然后加载pluggable.php,最后加载主题。如果您的函数覆盖在主题中,则会与默认函数冲突。您需要创建一个插件并将代码放在其中。创建一个名为custom\u new\u user\u email.php的文

我想自定义用户通知电子邮件模板,但无法覆盖
wp\u new\u User\u通知
。我已经试过把它放在
/plugins/
文件夹和其他选项中,但仍然不起作用,甚至标记的答案也不起作用。另外,我已经使用了不同的插件,但它仍然使用默认的电子邮件模板功能。

这种技术在主题代码中不起作用。首先加载插件,然后加载
pluggable.php
,最后加载主题。如果您的函数覆盖在主题中,则会与默认函数冲突。您需要创建一个插件并将代码放在其中。创建一个名为
custom\u new\u user\u email.php
的文件,并将其放在插件文件夹中,下面的代码将调整您想要的任何新正文内容

   <?php
/*
Plugin Name: Custom New User Email
Plugin URI: http://localhost
Description: Changes the copy in the email sent out to new users
Version: 1.0.0
Author: Your Name
Author URI: http://locahost
Text Domain: new-user-email
*/

// Redefine user notification function
// Override new user notification function
if ( !function_exists('wp_new_user_notification') ) {
    function wp_new_user_notification( $user_id, $plaintext_pass = '' ) {
       if ( $deprecated !== null ) {
            _deprecated_argument( __FUNCTION__, '4.3.1' );
        }

        global $wpdb, $wp_hasher;
        $user = get_userdata( $user_id );

        // The blogname option is escaped with esc_html on the way into the database in sanitize_option
        // we want to reverse this for the plain text arena of emails.
        $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);

        if ( 'user' !== $notify ) {
            $switched_locale = switch_to_locale( get_locale() );
            $message  = sprintf( __( 'There\'s a new user registration on your site %s:' ), $blogname ) . "\r\n\r\n";
            $message .= sprintf( __( 'Username: %s' ), $user->user_login ) . "\r\n\r\n";
            $message .= sprintf( __( 'Email: %s' ), $user->user_email ) . "\r\n";

            @wp_mail( get_option( 'admin_email' ), sprintf( __( '[%s] New User Registration' ), $blogname ), $message );

            if ( $switched_locale ) {
                restore_previous_locale();
            }
        }

        // `$deprecated was pre-4.3 `$plaintext_pass`. An empty `$plaintext_pass` didn't sent a user notification.
        if ( 'admin' === $notify || ( empty( $deprecated ) && empty( $notify ) ) ) {
            return;
        }

        // Generate something random for a password reset key.
        $key = wp_generate_password( 20, false );

        /** This action is documented in wp-login.php */
        do_action( 'retrieve_password_key', $user->user_login, $key );

        // Now insert the key, hashed, into the DB.
        if ( empty( $wp_hasher ) ) {
            require_once ABSPATH . WPINC . '/class-phpass.php';
            $wp_hasher = new PasswordHash( 8, true );
        }
        $hashed = time() . ':' . $wp_hasher->HashPassword( $key );
        $wpdb->update( $wpdb->users, array( 'user_activation_key' => $hashed ), array( 'user_login' => $user->user_login ) );

        $switched_locale = switch_to_locale( get_user_locale( $user ) );

        $message = sprintf(__('Username: %s'), $user->user_login) . "\r\n\r\n";
        $message .= __('To set your password, visit the following address:') . "\r\n\r\n";
        $message .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user->user_login), 'login') . ">\r\n\r\n";

        $message .= wp_login_url() . "\r\n";

        wp_mail($user->user_email, sprintf(__('[%s] Your username and password info'), $blogname), $message);

        if ( $switched_locale ) {
            restore_previous_locale();
        }

    }
}

?>

已经这样做了,如我提供的链接所示。我试着把它作为一个插件来创建,但仍然没有成功。你在某个地方犯了一个错误,因为我刚刚测试了它,它正在工作。按照我的指示和代码,它将工作。下面是修改后的消息的屏幕截图。是的,我复制了代码,这是首选方法,而不是链接,因为链接可以删除。对不起,我应该把原作者联系起来,对不起,你是对的。我已经删除了复制的代码,而是复制并粘贴了原来的WordPress函数。我已经删除了对GPLv2 License的引用。我投票将这个问题作为主题外的问题来结束,因为相关代码仅在一个链接中,这使得这个问题对未来的访问者毫无用处。还有什么东西在堵塞它?也许是另一个插件?或者您的插件未正确激活/运行?请停用所有插件,然后在新创建的通知插件处于活动状态的情况下重试。