Wordpress:ACF表单不更新用户个人资料中的自定义字段?

时间:2015-03-02 10:11:14

标签: php wordpress user-profile advanced-custom-fields

我使用高级自定义字段插件在Wordpress用户配置文件中创建一些额外字段。我想在前端更新这些用户字段。为此,我使用下面的代码。

<?php $options = array(
'post_id' => 'user_'.$current_user->ID,
'field_groups' => array(77),
'form' => true, 
'return' => add_query_arg( 'updated', 'true', get_permalink() ), 
'html_before_fields' => '',
'html_after_fields' => '',
'submit_value' => 'Update');acf_form( $options ); ?> 

此代码显示表单中的所有ACF字段。但是他们没有在当前登录的用户配置文件中进行更新。单击“更新”按钮时,应在当前登录的用户配置文件中更新所有字段。 请任何人帮助我。我错过了什么!!!

0 个答案:

没有答案