我正在尝试向WP注册表添加密码表单。请参见下面的代码。我想知道是否需要清理这个特定的用户输入?(如果是,怎么做?)
如果我理解正确,WP为某些东西内置了净化功能,密码可能就是其中之一。对吗?WP会在将其添加到数据库之前自动对其进行清理吗?
add_action( \'register_new_user\', \'registration_change_pass\', 10, 99 );
function registration_change_pass( $user_id ) {
if ( isset( $_POST[\'user_password\'] ) ) {
wp_set_password( $_POST[\'user_password\'], $user_id ); }
}