WordPress函数文档comment_link()
显示一个留言发布链接 描述 译文 显示评论链接 原文 Display the full, anchored U…
显示一个留言发布链接
描述
译文
显示评论链接
原文
Display the full, anchored URL to a single comment. This function must be used within the comments loop.
If you want to link to all of the comments for an entry, use the function comments_link() instead.
用法
<?php comment_link() ?>
参数
None.
返回值
(void)
This function does not return a value.
示例
Create an anchored permalink to a single comment:
1
2
3
4
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
<a href=“<?php comment_link(); ?>“>Permalink to this comment</a>
|
The code shown above will result (depending on your permalink settings) in something like this:
1
2
3
4
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
<a href=“<a class=”external free” href=”http://example.com/2009/07/15/example-post/comment-page-1/#comment-3″>http://example.com/2009/07/15/example-post/comment-page-1/#comment-3</a>”>Permalink to this comment</a>
|
注意
- Echos the return value of get_comment_link().
历史
添加于 版本: 1.5.0
源文件
comment_link() 函数的代码位于 wp-includes/feed.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Display the link to the comments.
*
* @since 1.5.0
*/
function comment_link() {
/**
* Filter the current comment’s permalink.
*
* @since 3.6.0
*
* @see get_comment_link()
*
* @param string $comment_permalink The current comment permalink.
*/
echo esc_url( apply_filters( ‘comment_link’, get_comment_link() ) );
}
|
- 原文:http://codex.wordpress.org/Function_Reference/comment_link
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!