Closed fer-ri closed 10 years ago
There are two ways I can think of.
name
attribute argument to be empty in the field definition array.array(
'field_id' => 'occurrence',
'title' => __( 'Occurrence', 'task-scheduler' ),
'type' => 'text',
'attributes' => array(
'name' => '', // <-- this one!
),
),
Hope it helps. Also don't forget to look over the FAQ and Other Notes sections as there are some relevant information!
Thanks a lot :)
Glad it helped!
Hi Michael,
In your demo/example you show us how to create form with
load_
and$this->addSettingFields
But how to create simple form thats not save any setting when submitted?Thanks :)