I am using the publish_post action to run some checks on a user after their post is published:
$author_ID = ????
add_action('publish_post', 'rhb_check_current_user', 10, $author_ID);
How can I get the original author's ID?
|
I am using the publish_post action to run some checks on a user after their post is published:
How can I get the original author's ID? |
||||
|
|
|
use
and in your rhb_check_current_user function check using the global $post:
|
|||
|
|
|
I think get_currentuserinfo() is what you're looking for. |
|||||
|