Home › Forums › Bug Reports › Programmatically inserting field with update_field() does not at _field_key meta › Reply To: Programmatically inserting field with update_field() does not at _field_key meta
Sooooo I have a workaround:
remove_action('post_updated', 'wp_save_post_revision');
...
wp_update_post($postData);
...
update_field('field_XYZ123', $value, $post_id);
...
add_action('post_updated', 'wp_save_post_revision');
And it works apparently, on the other hand we have no revision during the post update…
So the real question (I think) is the following:
Why get_field()
called in WP theme doesn’t retrieve the same Post ID than the one retrieved from the Back Office?
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.