wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_edit_comment_link › WordPress Function

Since2.3.0
已弃用n/a
get_edit_comment_link ( $comment_id = 0 )
参数:
  • (int|WP_Comment) $comment_id Optional. Comment ID or WP_Comment object.
    Required: No
    默认:
返回:
  • (string|void) The edit comment link URL for the given comment.
定义在:
文档:

Retrieves the edit comment link.



源码

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 );
}