Display custom user profile fields in wordpress
New to wordpress development. I was trying to solve the problem of adding extra fields to my wordpress logged in subscriber user profile area, and also echoing the field values in my custom page template html. I have added 3 extra fields to the profile with a ciemyFieldValue plugin. My main issue is retrieving the value of these fields in my custom dashboard page template, like so: $total = get_cimyFieldValue( get_query_var( 'subscriber' ), 'total' );
., it returns (Array) instead, how can I get out the extra field value from the $total
array?
Leave an answer