WordPress:Template Tags/the author url

来自站长百科
跳转至: 导航、​ 搜索

描述[ ]

这个标签显示了文章作者网站的URL网站区设置在用户的基本资料(管理 > 基本资料 > 你的基本资料)中。必须在The Loop内部使用这个标签。

用法[ ]

%%% <?php the_author_url(); ?> %%%

例子[ ]

显示作者的URL作为一个链接和链接文本。

<p>Author's web site:

<a href="<?php the_author_url(); ?>"><?php the_author_url(); ?></a></p>

显示为:

Author's web site: www.example.com

这个例子将作者的姓名显示为一个链接,连接到作者的网站。

<?php if (get_the_author_url()) { ?><a href="<?php the_author_url(); ?>"><?php the_author(); ?></a><?php } else { the_author(); } ?>

参数[ ]

这个标签不接受任何参数。

相关的[ ]

the_author, the_author_description, the_author_login, the_author_firstname, the_author_lastname, the_author_nickname, the_author_ID, the_author_email, the_author_url, the_author_link, the_author_icq, the_author_aim, the_author_yim, the_author_msn, the_author_posts, the_author_posts_link, list_authors, wp_list_authors

模板:没有Param标签页底文字