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.
我刚开始使用 S2Memeber,但在寻找保存/更新扩展用户信息的方法时遇到了问题。
我知道使用“s2get”来获取信息,但似乎没有像“s2put”这样的东西。
如何更新/添加使用 s2get 短代码检索的其他用户数据?
好的。有人对此表示赞同,所以我希望这个答案有所帮助。
您实际上并没有通过 S2Member 执行此操作,这当然很好。相反,您使用本机 WP 功能。
$meta_value = get_user_meta( $user_id, 'wp_s2member_custom_fields', true ); $meta_value['company_name'] = 'My Company'; update_user_meta($user_id, 'wp_s2member_custom_fields', $meta_value);