Home › Forums › General Issues › Looking to display 5 ACF fields' values in one field, while adding a post. › Reply To: Looking to display 5 ACF fields' values in one field, while adding a post.
Something like this
add_filter('acf/prepair_field/name=MESSAGE_FILED_NAME', 'change_message_MESSAGE_FILED_NAME')
function change_message_MESSAGE_FILED_NAME($field) {
$some_value = get_field('some_field');
$some_other_value = get_field('some_other_field');
$field['message'] = $some_value.' '.$some_other_value);
return $field;
}
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.