ninja_forms_edit_field_after_li
The Ninja Forms ninja forms edit field after li hook.
Description
Parameters (2)
- 0. $field_id (unknown)
- The field id.
- 1. $new (unknown)
- The new.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'ninja_forms_edit_field_after_li', $field_id, $new );
- The following example is for adding a hook callback.
- // define the ninja_forms_edit_field_after_li callback
- function action_ninja_forms_edit_field_after_li( $field_id, $new ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'ninja_forms_edit_field_after_li', 'action_ninja_forms_edit_field_after_li', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'ninja_forms_edit_field_after_li', 'action_ninja_forms_edit_field_after_li', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /deprecated/includes/admin/edit-field/edit-field.php
- do_action( 'ninja_forms_edit_field_after_li', $field_id, $new );