Home › Forums › General Issues › priority issue with function › Reply To: priority issue with function
When you use a priority of <10 for the acf/save_post action it will run before ACF has updated the values of the fields. Using get_field() will return the old value of the field instead of the new value, so you can’t use get_field() if your update depends on the new values.
Instead you need to get the values from the $_POST values. This is an array of posted values. ACF using the ‘acf’ index of this for all field values and the index for each field is the field key for the field.
// example of $_POST
$_POST['acf'] = array(
'field_0123456789acb' => 'value of field here',
'field_123456789abcd' => 'value of field here',
// etc.
);
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.