【在主题中添加额外的注册字段我的插件wordpress】我试图在主题中添加一些额外的字段作为我的登录插件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
推荐阅读
- 优先添加动态自定义样式在WordPress中不起作用
- 是否将自定义CSS添加到默认style.css(下划线_S WordPress主题)()
- 将视频上传器添加到我的WordPress自定义程序中
- 将if语句添加到WordPress中的php中的类
- 为每个菜单项添加额外的字段
- #yyds干货盘点#看动画学算法之:hashtable
- Java集合框架之 Collection 接口 #yyds干货盘点#
- 携程一面(分布式配置系统Apollo如何实时更新配置的?)
- Hadoop 入门笔记—核心组件 YARN