回显编辑后页面中的作者插件

时间:2013-05-16 作者:Christine Cooper

在后端的“编辑后”页面上,如何响应作者的user_nicename? 我指的是这篇文章的作者,而不是现在的用户。

2 个回复
最合适的回答,由SO网友:Christine Cooper 整理而成

Found it:

global $post;
$author_id=$post->post_author;
the_author_meta(\'user_nicename\', $author_id );
SO网友:Someone

遇到这个问题是因为我需要这样做,我建议不要像我使用的那样访问global。

get_the_author_meta( \'user_nicename\', get_the_author_meta( \'ID\' ) )

结束