函数原型
get_edit_comment_link( int|WP_Comment $comment_id ): string|void
函数描述
Retrieves the edit comment link.
是否弃用
未弃用
函数参数
-
$comment_id
int|WP_Comment
Optional - Comment ID or WP_Comment object.
函数返回值
string|void The edit comment link URL for the given comment.
函数位置
File: wp-includes/link-template.php.
函数源码
function get_edit_comment_link( $comment_id = 0 ) {
$comment = get_comment( $comment_id );
if ( ! current_user_can( 'edit_comment', $comment->comment_ID ) ) {
return;
}
$location = admin_url( 'comment.php?action=editcomment&c=' ) . $comment->comment_ID;
/**
* Filters the comment edit link.
*
* @since 2.3.0
*
* @param string $location The edit link.
*/
return apply_filters( 'get_edit_comment_link', $location );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 2.3.0 | Introduced. |

