您可以使用global $post;
echo $post->post_author
如果边栏位于主要内容之后(代码中),那么可以填充一个全局数组(不是最好的解决方案,但可以)。
// in the loop: Add each author to the global $post_authors array
$post_authors[] = $GLOBALS[\'post\']->post_author;
// in your sidebar:
if ( in_array( \'Author Name\', $GLOBALS[\'post_authors\'], true ) )
{
// do stuff
}