-
-
Save moon0326/34551bd7cedbd633e7d510ba9fca35d9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Log Current User | |
* Requires WP: 5.3 | |
* Version: 2.2.0 | |
* | |
*/ | |
function log_current_user() { | |
error_log( print_r( wp_get_current_user(), true ) ); | |
} | |
add_action( 'admin_init', 'log_current_user', 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment