这是烤进核心的,很难过滤掉。你最好为你的目标添加一个新的领域。它将被存储为一个文本字段,可以随意使用。例如:
function ath_cleanup_profile_fields( $contactmethods ) {
$contactmethods[\'my_new_profile\'] = \'Business Name\';
return $contactmethods;
}
add_filter(\'user_contactmethods\',\'ath_cleanup_profile_fields\',10,1);