Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dgoze/2001b459dc23af2d74cd8034436b16aa to your computer and use it in GitHub Desktop.
Save dgoze/2001b459dc23af2d74cd8034436b16aa to your computer and use it in GitHub Desktop.
ACF current user pho
<?php
global $current_user;
$userID = $current_user->ID;
$imageArray = get_field('your_picture', 'user_' . $userID);
$imageThumbURL = $imageArray['sizes']['thumbnail'];
?>
<img src="<?php echo $imageThumbURL;?>">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment