gravityflow_reports_args

The gravityflow_reports_args filter allows the reports display arguments to be overridden.

Parameters

Parameter Type Definition
$args Array The reports display arguments.



Examples

add_filter( 'gravityflow_reports_args', 'sh_gravityflow_reports_args', 10, 1 );
function sh_gravityflow_reports_args( $args ) {
   //Perform customizations of $args needed.
     return $args;
}

Placement

This code should be placed in the functions.php file of your active theme or in a custom functions plugin.