acf get user form field

Solutions on MaxInterview for acf get user form field by the best coders in the world

showing results for - "acf get user form field"
Sarah
02 Jul 2017
1<?php
2
3//This example will retrieve a field value from a user with an ID of 1.
4
5$variable = get_field('field_name', 'user_1');
6
7// do something with $variable
8
9?>