Browse: Home / Hooks /

learndash_process_time_seconds

apply_filters( 'learndash_process_time_seconds',  int $process_time_seconds )

Filters value of process time seconds.


Description #


Parameters #

$process_time_seconds

(int) Process time seconds.


Source #

File: includes/admin/class-learndash-admin-data-upgrades.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;
	}
);
 

Changelog #

Changelog
Version Description
2.3.0 Introduced.