您将无法为非超级管理员启用复选框,因为其代码显示:
<?php if ( is_multisite() && is_super_admin() ) { ?>
<tr>
<th scope="row"><label for="noconfirmation"><?php _e(\'Skip Confirmation Email\') ?></label></th>
<td><label for="noconfirmation"><input type="checkbox" name="noconfirmation" id="noconfirmation" value="1" <?php checked( $new_user_ignore_pass ); ?> /> <?php _e( \'Add the user without sending them a confirmation email.\' ); ?></label></td>
</tr>
<?php } ?>
您可以通过以下方式禁用确认电子邮件的发送:
add_filter( \'wpmu_welcome_user_notification\', \'__return_false\');
另一个选项是创建一个插件,创建自己的自定义添加用户页面。