0

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

1 Answer 1

1
<?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!

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

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.

Ask question

Explore related questions

See similar questions with these tags.