Kratos-2.6.4 主题中,在文章列表及文章内容页里没有作者显示,修改源码,增加显示作者功能
vi wp-content/themes/Kratos-2.6.4/single.php
<i class="fa fa-user"></i> <?php the_author(); ?> // 新增作者显示
<i class="fa fa-calendar"></i> <?php echo get_the_date(); ?>
vi wp-content/themes/Kratos-2.6.4/content.php
<i class="fa fa-user"></i> <?php the_author(); ?> // 新增作者显示
<a class="read-more" href="<?php the_permalink() ?>" title="阅读全文">阅读全文 <i class="fa fa-chevron-circle-right"></i></a>