我在想办法uncheck the box by default 当我们在WordPress上创建新用户时。
现在,当我们访问wp-admin/user-new.php
如以下截图所示:
wp-admin/user-new.php
在WordPress core中):<tr>
<th scope="row"><?php _e( \'Send User Notification\' ); ?></th>
<td>
<input type="checkbox" name="send_user_notification" id="send_user_notification" value="1" <?php checked( $new_user_send_notification ); ?> />
<label for="send_user_notification"><?php _e( \'Send the new user an email about their account.\' ); ?></label>
</td>
</tr>