1 | <?php |
---|
2 | |
---|
3 | add_action( 'after_setup_theme', function() { |
---|
4 | global $current_user; |
---|
5 | if ( ! empty( $current_user->test_24169 ) ) { |
---|
6 | die( 'too early' ); |
---|
7 | } |
---|
8 | } ); |
---|
9 | |
---|
10 | add_action( 'set_current_user', function() { |
---|
11 | global $current_user; |
---|
12 | $current_user->test_24169 = true; |
---|
13 | } ); |
---|