フォームからユーザー入力を取得する
-
-
こんにちは@William、あなたの質問は、実際にはWordPress固有ではなく、一般的なPHPの知識でもあるため、少し広範です.最初にHTMLとPHPのフォーム作成を確認してください.その後、 `wp_update_user($ user)`関数を使用してそれを実現できます.Hi @William, your question is a bit broad as it is not really WordPress specific, but also general PHP knowledge. Please check the HTML & PHP formbuilding first - afterwards you can use the `wp_update_user($user)` function to achieve that.
- 0
- 2012-12-11
- fischi
-
1 回答
- 投票
-
- 2012-12-11
フォームアクションハンドラーとして
wp-admin/admin-post.php
を使用し、それにコールバックとしてカスタム関数をバインドします.メール更新の簡単な例.ここでは
[userform]
という名前のショートコードを使用しますが、テンプレートを使用することもできます.add_shortcode( 'userform', 'wpse_75723_userform' ); add_action( 'admin_post_update_user_email', 'wpse_75723_update' ); /** * Create the form. */ function wpse_75723_userform() { $here = esc_url( home_url( $_SERVER['REQUEST_URI'] ) ); if ( ! is_user_logged_in() ) return 'You have to <a href="' . wp_login_url( $here ) . '">log in</a> to use this page.'; $action = admin_url( 'admin-post.php'); $user_id = get_current_user_id(); return "<form method='post' action='$action'> <input type='hidden' name='action' value='update_user_email'> <input type='hidden' name='redirect' value='$here'> <input type='hidden' name='user_id' value='$user_id'> <input type='email' name='email' size='15'> <input type='submit'> </form>"; } /** * Update user email */ function wpse_75723_update() { if ( ! isset ( $_POST['user_id'] ) ) die( 'no id' ); $user_id = absint( $_POST['user_id'] ); if ( ! current_user_can( 'edit_user', $user_id ) ) die( 'not allowed' ); if ( ! isset ( $_POST['email'] ) ) die( 'no email' ); if ( ! is_email( $_POST['email'] ) ) die( 'invalid email' ); $user = get_userdata( $user_id ); if ( empty ( $user->user_login ) ) die( 'user denied' ); global $wpdb; $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET user_email = %s WHERE user_login = %s", $_POST['email'], $user->user_login ) ); $location = isset ( $_POST['redirect'] ) ? urldecode( $_POST['redirect'] ) : home_url( '/' ); wp_redirect( $location, 303 ); exit; }
挿入…
[userform]
…ページに入れると、基本的なフォームが作成されます:
ユーザーはここで自分のメールアドレスを変更できます.
使用可能な変数とそれらが格納されている場所を理解するには、次のファイルを参照してください.
-
wp-admin/user-edit.php
-
wp-admin/includes/user.php
および -
wp-includes/user.php
プレーンSQLクエリを送信する場合は、テーブル
users
とuser_meta
も一見の価値があります.Use
wp-admin/admin-post.php
as form action handler, and bind your custom function as callback to that.A simple example for email updates. We will use a shortcode named
[userform]
here, but you can use a template too.add_shortcode( 'userform', 'wpse_75723_userform' ); add_action( 'admin_post_update_user_email', 'wpse_75723_update' ); /** * Create the form. */ function wpse_75723_userform() { $here = esc_url( home_url( $_SERVER['REQUEST_URI'] ) ); if ( ! is_user_logged_in() ) return 'You have to <a href="' . wp_login_url( $here ) . '">log in</a> to use this page.'; $action = admin_url( 'admin-post.php'); $user_id = get_current_user_id(); return "<form method='post' action='$action'> <input type='hidden' name='action' value='update_user_email'> <input type='hidden' name='redirect' value='$here'> <input type='hidden' name='user_id' value='$user_id'> <input type='email' name='email' size='15'> <input type='submit'> </form>"; } /** * Update user email */ function wpse_75723_update() { if ( ! isset ( $_POST['user_id'] ) ) die( 'no id' ); $user_id = absint( $_POST['user_id'] ); if ( ! current_user_can( 'edit_user', $user_id ) ) die( 'not allowed' ); if ( ! isset ( $_POST['email'] ) ) die( 'no email' ); if ( ! is_email( $_POST['email'] ) ) die( 'invalid email' ); $user = get_userdata( $user_id ); if ( empty ( $user->user_login ) ) die( 'user denied' ); global $wpdb; $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET user_email = %s WHERE user_login = %s", $_POST['email'], $user->user_login ) ); $location = isset ( $_POST['redirect'] ) ? urldecode( $_POST['redirect'] ) : home_url( '/' ); wp_redirect( $location, 303 ); exit; }
Inserting …
[userform]
… into a page will produce a basic form:
The user can change her/his email address here.
To understand what variables are available and where they are stored look at these files:
wp-admin/user-edit.php
wp-admin/includes/user.php
andwp-includes/user.php
The tables
users
anduser_meta
are worth a look too if you want to send plain SQL queries.-
このフック「admin_post_update_user_email」はどこにも見つかりません.どこから入手しますか?I can't find this hook 'admin_post_update_user_email' anywhere. Where do you get it from?
- 0
- 2013-09-21
- Ari
-
@AriSusantoこれは、 `admin_post_`と`
`の値の組み合わせです. @AriSusanto This is a combination of `admin_post_` and the value of ``.- 0
- 2013-09-21
- fuxia
-
ユーザーのウェブサイトなど、別の作業入力フィールドを追加するにはどうすればよいですか?How to add another working input fields to it such as user's website etc?
- 0
- 2013-09-21
- Ari
-
`wpse_75723_userform()`に書き込んで、 `wpse_75723_update()`で読み取ってください.この質問がわかりません.Just write it into `wpse_75723_userform()` and read it in `wpse_75723_update()`. I don’t understand this question.
- 0
- 2013-09-21
- fuxia
-
はい、それは単に機能しています.`wp_update_user`を使用して、追加のユーザープロファイル入力フィールドを更新します.Yes, it is simply working. I use `wp_update_user` to update additional user profile input field.
- 0
- 2013-09-22
- Ari
ユーザーがフロントエンドで情報を更新できるフォームを作成しようとしています.私はPHPを学び始めたばかりです(私はC#をよく知っています).このコードを使用してWordPressページにフォームを作成する場合、ユーザーが[更新]ボタンを押してデータベースを更新したときに、ユーザーから情報を取得するにはどうすればよいですか?