WordPress:Template Tags/the author url

来自站长百科
Xxf3325讨论 | 贡献2008年6月25日 (三) 10:13的版本 (新页面: == Description == This tag displays the URL to the Website for the author of a post. The '''Website''' field is set in the user's profile ([[WordPress...)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航、​ 搜索

Description

This tag displays the URL to the Website for the author of a post. The Website field is set in the user's profile (Administration > Profile > Your Profile). This tag must be used within WordPress:The Loop.

Usage

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

Example

Displays the author's URL as a link and the link text.

<p>Author's web site: 
<a href="<?php the_author_url(); ?>"><?php the_author_url(); ?></a></p>

Which displays as:

Author's web site: www.example.com

This example displays the author's name as a link to the author's web site.

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

Parameters

This tag does not accept any parameters.

Related

模板:Tag Author Tags

模板:No Param Tag Footer