这是完全未经测试的,因为我没有使用bbPress或手头有一份副本供自己试用,但是this page 似乎有一些代码允许您添加新的注册字段。
<?php
/*
Plugin Name: Customize User Profile
*/
add_filter( \'get_profile_info_keys\', \'customize_user_profile\', 10, 2 );
function customize_user_profile( $fields, $context ) {
/**
* Remove undesired fields
*
* Commented = left
* Uncommented = removed
*/
// unset( $fields[\'first_name\'] );
// unset( $fields[\'last_name\'] );
unset( $fields[\'user_url\'] );
// unset( $fields[\'from\'] );
unset( $fields[\'occ\'] );
unset( $fields[\'interest\'] );
/**
* Add new fields
*
* Quoting functions.bb-core.php, line 906:
* meta_key < (required?, Label, hCard property). Don\'t use user_{anything} as the name of your meta_key.
*/
$fields[\'my_meta_key\'] = array(
false,
__( \'My meta key\' ),
\'text\'
);
return $fields;
}
注意:编辑是从链接源进行的复制/粘贴