我试图在主题中添加一些额外的字段作为我的登录插件Wordpress。
我已经完成了主题文档。
多余的字段未保存在数据库中。我也已经在数据库中添加了额外的字段, 但是仍然没有将数据保存在数据库中
有什么建议吗?
#1
你需要使用自定义类型, 而不是text和first_name
function add_tml_registration_form_fields() {
tml_add_form_field( 'register', 'custom_1', array(
'type' => 'custom', 'label' => 'First Name 1 ', 'value' => tml_get_request_value( 'first_name_test', 'post' ), 'id' => 'first_name_test', 'priority' => 15, ) );
tml_add_form_field( 'register', 'custom_2', array(
'type' => 'custom', 'label' => 'Last Name 1', 'value' => tml_get_request_value( 'last_name_test', 'post' ), 'id' => 'last_name_test', 'priority' => 15, ) );
}
add_action( 'init', 'add_tml_registration_form_fields' );
读这个
https://docs.thememylogin.com/article/104-function-tmladdformfield
评论前必须登录!
注册