For a project I’m working on, I want to change the labels of the ‘Nickname’ and ‘Biographical Info’ fields on edit profile (user-edit.php) page in the dashboard. I still want to use those fields as they are, I only want to change the labels. Anyone know of a function that can do this?
Leave a Reply
You must be logged in to post a comment.
Every string goes through
translate()
, which uses thegettext
filter. This mean you can try something like this:It’s probably even more efficient if you only call the
add_filter
when you are on theuser-edit.php
page (see theadmin_head-user-edit.php
hook or something like that).I am late with answer, but here is my take anyway. Slight differences and that selective filter add.