Display additional user fields

A theme is in development that echo's fields from the users account on their themed account page. This is the standard format.

?php echo  $current_user-user_lastname;?

Thats all well and good. But there are 13 additional fields added via the plugin register plus. How do we echo them? This for example does not work.

?php echo  $current_user-user_post_code;?

Any help appreciated, marvellous.

Topic registered php users custom-field Wordpress

Category Web


Hi @Robin I Knight:

Have you tried this?

<?php echo get_user_meta($current_user->ID,'user_post_code',true);?>

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.