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