I've got a function that I'm trying to fire at wp_signon (grabs data from a remote server and updates accordingly). I'm running the function within a class that is on a secondary file in a plugin (i.e. brought in with a require_once). For the life of me, I cannot get this function to run at all.
add_action( 'wp_signon', array(&$this, 'login_pull_updates'), 40, 3 );
function login_pull_updates() {
update_option('ap_login_run', 'YES I DID');
}
I'm using that now to just test and confirm it's running at all, and it won't fire. Any ideas?
'wp_signon'exists? Could not find it … – toscho♦ Jun 11 '12 at 18:24