Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テーブル WP_USER に新しい列を追加するのは良いことですか?それとも、メタユーザー テーブルに追加する必要がありますか? WP機能があるのでこれを疑問に思っていました
/* Get full WP_User object instance. */ $user = new WP_User ($user->ID);
WP_USER に列を追加した後も同様に機能しますか?
カスタム フィールドをユーザーに追加する場合は、usermeta を使用するか、ユーザー名を主キーとして新しいテーブルを作成します。これにより、更新に関して将来の証拠になることができます。