如果你想让它在你的插件激活后工作,并在激活后永远工作,你可以使用以下方法:;
<?php
/*
Plugin Name: Simple Plugin
Plugin URI: http://huseyinbabal.net
Description: Simple plugin
Version: 0.1
Author: Hsüseyin BABAL
Author URI: http://huseyinbabal.net
*/
function modify_contact_methods($profile_fields) {
// Add new fields
$profile_fields['twitter'] = 'Twitter Username';
$profile_fields['facebook'] = 'Facebook URL';
$profile_fields['gplus'] = 'Google+ URL';
// Remove old fields
unset($profile_fields['aim']);
return $profile_fields;
}
add_filter('user_contactmethods', 'modify_contact_methods');