WordPress:Template Tags/the author email

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

描述[ ]

这个标签显示了文章作者的电子邮件地址。电子邮件栏设置在用户的基本资料(管理 > 基本资料 > 你的基本资料)中。这个标签必须在The Loop内部使用。 注意,电子邮件地址并没有编码或者以任何的方式免遭spambots截获。关于这一点,请看看免遭垃圾广告袭击的例子


用法[ ]

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


例子[ ]

Mailto 链接[ ]

将作者的电子邮件地址显示为一个"mailto"链接。

<a href="mailto:<?php the_author_email(); ?> ?>">联系作者</a>

免遭垃圾广告袭击[ ]

这个例子通常使用内部函数antispambot()编码HTML字符实体中的某部分(你的浏览器能够正确地读出这些字符),使得电子邮件地址变得'模糊'。注意例子使用得到_the_作者_电子邮件()函数,因为the_作者_电子邮件()echoes地址之后,antispambot()才能运行。

<a href="mailto:<?php echo antispambot(get_the_author_email()); ?>">email author</a>

参数[ ]

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

相关的[ ]

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