首页    >    中文手册    >   模板标签-comment_author_url_link()

模板标签-comment_author_url_link()

说明

该标签显示带有链接的评论作者的URL(通常即评论者的网站地址)。该标签必须用在WordPress主循环(loop)或评论循环中。

用法

<?php comment_author_url_link('linktext', 'before', 'after'); ?> 

示例

默认用法

web site: <?php comment_author_url_link(); ?><br />  

链接文本和链接样式

将评论者的url链接的链接文本显示为访问该用户的网站,并在链接前后添加居中圆点:

<?php comment_author_url_link('Visit Site of Comment Author', ' &bull; ', ' &bull; '); ?>

参数

linktext

(字符串)url链接的链接文本。默认为评论者的网站地址。

before

(字符串)显示在链接前的文本。无默认值。

after

(字符串)显示在链接后的文本。无默认值。

 

分类:中文手册

* 版权声明:作者WordPress啦! 转载请注明出处。