我在 ACF 中有一个组字段(带有社交媒体链接)。所以我以输入形式写下我社交媒体的链接。我想将它们保存在我的 ACF 字段中。例如,我可以访问 twitter$social_links = get_field('player_socials', 'user_'.$current_user_id);echo($social_links['twitter']['url']);但是我该如何保存呢?
1 回答
浮云间
TA贡献1829条经验 获得超4个赞
update_field($selector, $value, [$post_id]);
分组:
//Group your data into an array:
$values = array(
'street' => $street,
'number' => $number,
'zipcode' => $zipcode,
'city' => $city
);
//Update the field using this array as value:
update_field( 'selector', $values, $post_ID );
- 1 回答
- 0 关注
- 113 浏览
添加回答
举报
0/150
提交
取消