Wordpressにてユーザー情報項目の編集をしたいです。
woocommerceを使用しているのですが、マイアカウントのアカウント詳細内の項目を追加したいです。
具体的には下記サイトを参考に、項目を追加することはできたのですが、テキストボックスを名前の入力欄のように左右2つ置くことができていません。
もともとある姓名欄はclassをあててサイズを変えていると思うのですが、どの部分に追加すればよいか分かりません。
https://rudrastyh.com/woocommerce/edit-account-fields.html
/** * Step 1. Add your field */ add_action( 'woocommerce_edit_account_form', 'misha_add_field_edit_account_form' ); // or add_action( 'woocommerce_edit_account_form_start', 'misha_add_field_edit_account_form' ); function misha_add_field_edit_account_form() { woocommerce_form_field( 'country_to_visit', array( 'type' => 'text', 'required' => true, // remember, this doesn't make the field required, just adds an "*" 'label' => 'Country you want to visit the most', 'description' => 'Maybe it is Norway or New Zealand or...?', ), get_user_meta( get_current_user_id(), 'country_to_visit', true ) // get the data ); } /** * Step 2. Save field value */ add_action( 'woocommerce_save_account_details', 'misha_save_account_details' ); function misha_save_account_details( $user_id ) { update_user_meta( $user_id, 'country_to_visit', sanitize_text_field( $_POST['country_to_visit'] ) ); } /** * Step 3. Make it required */ add_filter('woocommerce_save_account_details_required_fields', 'misha_make_field_required'); function misha_make_field_required( $required_fields ){ $required_fields['country_to_visit'] = 'Country you want to visit the most'; return $required_fields; }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。