ninja_forms_export_subs_per_step
The Ninja Forms ninja forms export subs per step hook.
Description
Parameters (1)
- 0. $int (int) =>
10
- The int.
Usage
- To run the hook, copy the example below.
- $int = apply_filters( 'ninja_forms_export_subs_per_step', $int );
- if ( !empty( $int ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the ninja_forms_export_subs_per_step callback
- function filter_ninja_forms_export_subs_per_step( $int ) {
- // make filter magic happen here...
- return $int;
- };
- // add the filter
- add_filter( 'ninja_forms_export_subs_per_step', 'filter_ninja_forms_export_subs_per_step', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'ninja_forms_export_subs_per_step', 'filter_ninja_forms_export_subs_per_step', 10, 1 );
Defined (2)
The filter is defined in the following location(s).
- /includes/Admin/CPT/DownloadAllSubmissions.php
- $subs_per_step = apply_filters( 'ninja_forms_export_subs_per_step', 10 );
- $subs_per_step = apply_filters( 'ninja_forms_export_subs_per_step', 10 );