WordPress作者链接标签:the_author_link

WordPress模板标签the_author_link输出带作者主页链接的作者名称,也就是作者在个人资料中设置的“站点”的链接,必须用在The Loop主循环中。

1
the_author_link()

the_author_link()函数没有任何参数,直接调用即可。

函数使用示例

1
<p>作者: <?php the_author_link(); ?></p>

扩展阅读

the_author_link()函数位于:wp-includes/author-template.php

相关函数:

  • the_author()
  • get_the_author()
  • get_the_author_id()
  • get_the_author_link()
  • the_author_meta()
  • get_the_author_meta()
  • the_author_posts()
  • get_the_author_posts()
  • the_author_posts_link()
  • get_author_posts_url()
  • get_the_modified_author()
  • the_modified_author()
  • wp_dropdown_users()
  • wp_list_authors()
原文链接:https://xiaohost.com/2402.html,转载请注明出处。
0