get acf field user code example
Example 1: get field acf
$content = get_field('content', $post_id);
Example 2: acf get user form field
<?php
//This example will retrieve a field value from a user with an ID of 1.
$variable = get_field('field_name', 'user_1');
// do something with $variable
?>