我想删除自动添加到用户配置文件地址上的http://

时间:2012-01-08 作者:Meduncho

我将此字段用于其他用途,不希望在更新时将http://?

基于twentyeleven,wp v3定制主题。1.1

谢谢

1 个回复
SO网友:Norcross

这是烤进核心的,很难过滤掉。你最好为你的目标添加一个新的领域。它将被存储为一个文本字段,可以随意使用。例如:

function ath_cleanup_profile_fields( $contactmethods ) {

$contactmethods[\'my_new_profile\']   = \'Business Name\'; 

    return $contactmethods;
}
add_filter(\'user_contactmethods\',\'ath_cleanup_profile_fields\',10,1);

结束

相关推荐