Number of votes submitted on user profile
-
Hi,
I want to display the number of votes of a user in their profile.
I know how to register a profile field
function modify_contact_methods($profile_fields) { $profile_fields['votes-submitted'] = 'Votes Submitted'; return $profile_fields; } add_filter('user_contactmethods', 'modify_contact_methods');
but I don’t know how to modify the plugin to insert the votes in the field.
Thanks
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Number of votes submitted on user profile’ is closed to new replies.