0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【WP-Members】 radioの値がアップデートできません

Posted at

現在WP-Membersを使用しており、「wp_update_user」の機能を使って
フィールドの値のアップデートを試みています。
項目には「text」や「radio」等があり、「radio」の値がアップデートできず困っております。
radiobutton.PNG

textの値を更新する際には、以下のようにphpから命令すると上手くいきます。

$test = array ( 'ID' => $id,'first_name' => $first_name);

しかし、radioの値を更新しようとすると上手く行きません。。

$test = array ( 'ID' => $id,'plan' => $plan);

$plan はStringの値です。

planの設定

どのようにすれば「radio」の値をアップデートできるのでしょうか?

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?