Browse: Home / Hooks /

learndash_process_time_percent

apply_filters( 'learndash_process_time_percent' )

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_percent filter.
 */
add_filter(
	'learndash_process_time_percent',
	function( $process_time_percent ) {
		// May add any custom logic using $process_time_percent.

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