我使用的是 2021 主题。我的首页不显示作者。但是作者显示在单个帖子页面中。有没有办法将作者添加到首页?如果需要,我可以发布指向我的网站和代码的链接。
答案 0 :(得分:0)
罗伯特,一个简单的解决方案是打开文件:
<块引用>wp-content/themes/twentytwentyone/inc/template-tags.php
然后转到第 131 行并粘贴以下代码:
echo '<a href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '" rel="author">' . esc_html( get_the_author() ) . '</a>';
请注意,这将适用于 2021 主题。我没有在其他 Wordpress 默认模板上测试过。