我已将以下内容添加到我的form-login.php
中<p class="form-row form-row-wide">
<label for=age">Age </label>
<select type="text" class="input-text" name="age" id="age" value="<?php if ( ! empty( $_POST['age'] ) ) esc_attr_e( $_POST['age'] ); ?>" class="regular-text" /><br />
</p>
这是我的functions.php
if ( isset( $_POST[''age'] ) ) {
update_user_meta( $customer_id, ''age', sanitize_text_field( $_POST['age'] ) );
}
我对如何通过JSON使用数据填充select字段有一个模糊的想法但我不知道在哪里添加此文件以使其呈现值然后将所选值传递给数据库。
我希望有人能指出我正确的方向。
谢谢, 丹