我正在尝试向Ninja Forms(v。3.3)添加自定义字段。在任何地方都找不到完整的示例。
仔细检查代码,似乎过滤器'ninja_forms_register_fields'可以解决问题,但我无法在任何地方运行它。
答案 0 :(得分:2)
这里是创建/添加新的Ninja Forms字段类型的方法(请注意,此代码应移至单独的WordPress插件中)。
首先,我们需要了解 ninja_forms_register_fields :
add_filter( 'ninja_forms_register_fields', array($this, 'register_fields'));
然后定义方法 register_fields (在插件类内部):
public function register_fields($actions) {
$actions['blah'] = new NF_CustomPlugin_Fields_Blah();
return $actions;
}
最后一步是声明 NF_CustomPlugin_Fields_Blah 类:
class NF_CustomPlugin_Fields_Blah extends NF_Fields_Textbox {
protected $_name = 'blah';
protected $_section = 'common'; // section in backend
protected $_type = 'textbox'; // field type
protected $_templates = 'textbox'; // template; it's possible to create custom field templates
public function __construct() {
parent::__construct();
$this->_nicename = __( 'Blah Field', 'ninja-forms' );
}
}