作者未出现在 single.php

The author doesn't show in single.php

我正在创建主题,我无法让作者显示在 single.php 页面上。它显示在网站的较低位置,但在标题下的第一次调用中似乎没有显示。

<header class="intro-header" style="background-image: url('http://i.imgur.com/ZyZMhQv.jpg')">
    <div class="container">
        <div class="row">
            <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
                <div class="site-heading">
                    <h1><?php the_title(); ?></h1>
                    <hr class="small">
                    <span class="subheading">Posted by <?php the_author(); ?> on <?php the_time('F jS, Y'); ?></span>
                    <div id="avatar" class="row text-center"><?php echo get_avatar( $post->post_author, 92 ); ?> </div>
                </div>
            </div>
        </div>
    </div>
</header>

第二次在循环中调用时它工作正常。

<div class="row">
    <div class="col-md-6 col-md-offset-3">
        <div class="panel panel-default panel-body">

        <?php while(have_posts()) : the_post(); ?>
            <p> Posted by <?php the_author(); ?> on <?php the_time('F jS, Y'); ?> </p>
            <p> <?php the_content(''); ?> </p>
            <?php endwhile; wp_reset_query(); ?>
        </div>
    </div>

为什么第一次调用时不显示?

根据 codex - 它必须在循环内。