Skip to content

Instantly share code, notes, and snippets.

@jgalea
Last active December 7, 2022 01:30
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgalea/5713722 to your computer and use it in GitHub Desktop.
Save jgalea/5713722 to your computer and use it in GitHub Desktop.
Test execution time of WordPress PHP function
<?php
function my_function() {
$start = microtime(true);
// function code here
$time_taken = microtime(true) - $start;
wp_die( $time_taken ); // in seconds
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment