Skip to content

Instantly share code, notes, and snippets.

@RupW
Created October 4, 2020 22:59
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 RupW/fc78981c300b6e4d1e95c0342be5b299 to your computer and use it in GitHub Desktop.
Save RupW/fc78981c300b6e4d1e95c0342be5b299 to your computer and use it in GitHub Desktop.
Test for https://wordpress.stackexchange.com/q/375930 which works fine for me
<?php
add_action('plugins_loaded', 'show');
function show() {
$user = get_user_by('ID', 1);
error_log(print_r($user,true));
return $user;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment