Skip to content

Instantly share code, notes, and snippets.

@mattradford
Created November 18, 2014 16:15
Show Gist options
  • Save mattradford/9e187e468186d9ccd190 to your computer and use it in GitHub Desktop.
Save mattradford/9e187e468186d9ccd190 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