Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I need create page that will display all custom fields from user profile. So for example it should be like:
field1 : value
field2 : value
field3 : value
field4 : value
......
Amount of fields will be changing
<?php $all_meta = get_user_meta($user_id); foreach($all_meta as $key => $value) { echo $key . ' - ' . $value[0]; } ?>
It requires knowing the user ID. you can add styling/html tags as needed.
Let me know if it works!
Add a comment
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.