要添加配置文件字段,请执行以下操作Justin Tadlock\'s post
要删除某些字段,请使用以下代码
add_filter(\'user_contactmethods\', \'no_contact_info\');
function no_contact_info($contactmethods) {
unset($contactmethods[\'aim\']);
unset($contactmethods[\'yim\']);
unset($contactmethods[\'jabber\']);
return $contactmethods;
}
但有些字段需要删除jQuery
使用您自己的CSS和jQuery为页面完全设置样式并添加额外的行为
add_action( \'admin_print_scripts-profile.php\', \'custom_profile_style\' );
add_action( \'admin_print_scripts-user-edit.php\', \'custom_profile_style\' );
function custom_profile_style() {
wp_register_style( \'custom_profile_css\', get_stylesheet_directory_uri() . \'/css/profile.css\' );
wp_enqueue_style( \'custom_profile_css\' );
wp_register_script( \'custom_profile_js\', get_stylesheet_directory_uri() . \'/js/profile.js\' );
wp_enqueue_script( \'custom_profile_js\' );
}
我正在使用此向页面添加其他内容
jQuery(document).ready( function($) {
$(\'#wpbody-content\').append(\'<iframe src="http://wordpress.stackexchange.com/" width="500" height="255" frameborder="0" scrolling="no"></iframe>\');
});