Browse: Home / Hooks /

learndash_process_time_seconds

apply_filters( 'learndash_process_time_seconds' )

Description #


Source #

File: includes/admin/class-learndash-admin-settings-data-reports.php


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for learndash_process_time_seconds filter.
 */
add_filter(
	'learndash_process_time_seconds',
	function( $process_time_seconds ) {
		// May add any custom logic using $process_time_seconds.

		// Always return $process_time_seconds.
		return $process_time_seconds;
	}
);