How to automatically remove links from WordPress Biographical Info?
You can use pre_user_description hook, which filters the user’s description prior to saving/updating the user, to remove any unwanted tags. To do that, you can use the wp_kses function, which strips out all but whitelisted tags. The allowed tags should be given as an associative array, where the keys are the names of the tags, … Read more