author.php 474 B

123456789101112131415
  1. <?php get_header();
  2. global $wp_query;
  3. $curauth = $wp_query->get_queried_object();
  4. ?>
  5. <div class="content-wrap">
  6. <div class="content">
  7. <header class="archive-header">
  8. <h1><?php echo $curauth->display_name.'的文章' ?></h1>
  9. <?php if ( $curauth->description ) echo '<div class="archive-header-info">'.$curauth->description.'</div>'; ?>
  10. </header>
  11. <?php include( 'modules/excerpt.php' ); ?>
  12. </div>
  13. </div>
  14. <?php get_sidebar(); get_footer(); ?>