Skip to content

Instantly share code, notes, and snippets.

@rachelbaker
Created January 23, 2013 02:24
Show Gist options
  • Save rachelbaker/4601279 to your computer and use it in GitHub Desktop.
Save rachelbaker/4601279 to your computer and use it in GitHub Desktop.
<?php
/**
* Snippet via @_mfields
* Check order of WordPress hooks
*/
function mfields_test_some_hooks() {
static $i = 1;
var_dump( $i . ' - ' . current_filter() );
$i++;
}
add_action( 'wp_head', 'mfields_test_some_hooks' );
add_action( 'wp_print_scripts', 'mfields_test_some_hooks' );
add_action( 'wp_enqueue_scripts', 'mfields_test_some_hooks' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment