get author of published post 时间:2011-03-17 作者:idea 我正在使用publish\\u post操作在用户的帖子发布后对其运行一些检查:$author_ID = ???? add_action(\'publish_post\', \'rhb_check_current_user\', 10, $author_ID); 如何获取原始作者的ID? 2 个回复 最合适的回答,由SO网友:Bainternet 整理而成 使用add_action(\'publish_post\', \'rhb_check_current_user\');在rhb\\u check\\u current\\u用户函数检查中,使用全局$post:function rhb_check_current_user(){ global $post; $author_id = $post->post_author; ... ... } SO网友:Anh Tran 我想get_currentuserinfo() 就是你要找的。 结束 文章导航