Support

Account

Home Forums General Issues Custom field not appearing in author.php Reply To: Custom field not appearing in author.php

  • You need to supply the author ID in the format 'user_'.$author_id

    
    $user_id = get_the_author_meta('ID');
    the_field('profile_image', 'user_'.$user_id);
    

    for more information http://www.advancedcustomfields.com/resources/how-to-get-values-from-a-user/