Home › Forums › Front-end Issues › get_field_object return false › Reply To: get_field_object return false
The reason is likely that a value has never been saved for this field for the current post and you are using the field name in $key
. Under this condition you need to use the field key instead of the field name.
You can solve this by building an array like this
$fields = array(
// field name => key pairs
'name-of-field-1' => 'field_123456',
'name-of-field-2' => 'field_234567',
// etc...
)
Then use
$field = get_field_object($field[$key], false, true);
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.