目前,WordPress中的示例代码:
<a href="<?php echo get_author_posts_url(get_the_author_meta(\'ID\')); ?>"><?php the_author(); ?></a>
变成:
<a href="http://example.com/author/user-name">user-name</a>
如果单击该链接,它会将访问者带到作者的页面,并使用当前主题中的“author.php”模板文件来显示页面。
如何获取另一个自定义链接,如以下所示:
<a href="<?php echo get_author_posts_url(get_the_author_meta(\'ID\')); ?>"><?php the_author(); ?></a>
要使用“自定义作者文件.php”?