将字段值更改为新值后,它不会保存数据。我尝试通过功能update_field()更新值,但未尝试操作
$post_id = 197;
$value = update_field( 'my_field', 'my_value', $post_id );
答案 0 :(得分:0)
您应该使用字段关键字而不是字段名称, 试试这个代码。
$post_id = 197;
//Repace field_56e683ab6265f with your field key
update_field( 'field_56e683ab6265f', 'my_value', $post_id );
或者您也可以这样做
update_post_meta( $post_id , 'my_field', 'my_value' );
//Repace field_56e683ab6265f with your field key
update_post_meta( $post_id , '_my_field', 'field_56e683ab6265f' );