How to display custom field value on front-end (HireBee)
I have added custom field to the registration page which contains a selection option from dropdown. For example, when some one going to register then they have to select an option which is their freelancer's-type (individual/company). Now I am trying to display this custom field value on the front-end.
In the
content-freelancer.php I added this line of code:
PHP Code:
<?php echo get_user_meta( get_the_ID(), 'my_field_name', true ) ; ?>
But it retrieves nothing.
My Goal is to display the custom value under the name of every freelancers. How can I achieve that?
Thanks in advance.