Remove Default Author Contact Method Fields
Removes the legacy AIM, Yahoo IM, and Jabber/XMPP contact method rows from the WordPress user profile screen.
PHPby SnipCraft
php
<?php
if ( ! function_exists( 'scseed_remove_legacy_contact_methods' ) ) {
function scseed_remove_legacy_contact_methods( $methods ) {
unset( $methods['aim'] );
unset( $methods['jabber'] );
unset( $methods['yim'] );
return $methods;
}
add_filter( 'user_contactmethods', 'scseed_remove_legacy_contact_methods' );
}#admin#cleanup#contact-methods#profile#users