wpseek.com
A WordPress-centric search engine for devs and theme authors



timer_start › WordPress Function

Since0.71
Deprecatedn/a
timer_start ( No parameters )
Access:
  • private
See:
Returns:
  • (bool) Always returns true.
Defined at:
Codex:

Starts the WordPress micro-timer.



Source

function timer_start() {
	global $timestart;

	$timestart = microtime( true );

	return true;
}