Skip to content

Instantly share code, notes, and snippets.

@moon0326
Created May 19, 2021 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moon0326/34551bd7cedbd633e7d510ba9fca35d9 to your computer and use it in GitHub Desktop.
Save moon0326/34551bd7cedbd633e7d510ba9fca35d9 to your computer and use it in GitHub Desktop.
<?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