ninja_forms_edit_field_before_ul
The Ninja Forms ninja forms edit field before ul hook.
Description
Parameters (1)
- 0. $form_id (unknown)
- The form id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'ninja_forms_edit_field_before_ul', $form_id );
- The following example is for adding a hook callback.
- // define the ninja_forms_edit_field_before_ul callback
- function action_ninja_forms_edit_field_before_ul( $form_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'ninja_forms_edit_field_before_ul', 'action_ninja_forms_edit_field_before_ul', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'ninja_forms_edit_field_before_ul', 'action_ninja_forms_edit_field_before_ul', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /deprecated/includes/admin/pages/ninja-forms/tabs/field-settings/field-settings.php
- do_action( 'ninja_forms_edit_field_before_ul', $form_id );