get_user_meta attachment
-
How can I display a link to a file upload that I made as a custom field in a user’s profile page? Text fields are no prob:
$favmovie = get_user_meta($user_id , "favmovie");
but what about
$resume = get_user_meta($user_id , "resume");
where resume is a file the user has uploaded to their profile. How do I get the url of the file?
- The topic ‘get_user_meta attachment’ is closed to new replies.