可能您使用get_post
在带有查询对象的编辑页面上。您可以简单地使用$post->post_author
在“编辑”页面上。例如
$editableid = get_query_var(\'id\');
$postedit = get_post($editableid);
$author_id = $postedit->post_author; //Always return author ID value.
<input type="hidden" name="post_author" value="<?php echo $author_id;?>" />
我希望这段代码对您有所帮助。
编辑:用于您使用的电子邮件the_author_meta 与您的$author_id
价值