render_block_core_comment_edit_link

函数
render_block_core_comment_edit_link ( $attributes, $content, $block )
参数
  • (array) $attributes Block attributes.
    Required:
  • (string) $content Block default content.
    Required:
  • (WP_Block) $block Block instance.
    Required:
返回值
  • (string) Return the post comment's date.
定义位置
相关方法
register_block_core_comment_edit_linkrender_block_core_comment_reply_linkrender_block_core_comments_titlerender_block_core_comment_daterender_block_core_home_link
引入
-
弃用
-

render_block_core_comment_edit_link: 这个函数用来渲染WordPress中的评论编辑链接块。评论编辑链接块显示一个编辑评论的链接: 这个函数负责生成评论编辑链接块的HTML标记。

渲染服务器上的`core/comment-edit-link`区块。

function render_block_core_comment_edit_link( $attributes, $content, $block ) {
	if ( ! isset( $block->context['commentId'] ) || ! current_user_can( 'edit_comment', $block->context['commentId'] ) ) {
		return '';
	}

	$edit_comment_link = get_edit_comment_link( $block->context['commentId'] );

	$link_atts = '';

	if ( ! empty( $attributes['linkTarget'] ) ) {
		$link_atts .= sprintf( 'target="%s"', esc_attr( $attributes['linkTarget'] ) );
	}

	$classes = '';
	if ( isset( $attributes['textAlign'] ) ) {
		$classes .= 'has-text-align-' . $attributes['textAlign'];
	}

	$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $classes ) );

	return sprintf(
		'<div %1$s><a href="%2$s" %3$s>%4$s</a></div>',
		$wrapper_attributes,
		esc_url( $edit_comment_link ),
		$link_atts,
		esc_html__( 'Edit' )
	);
}

常见问题

FAQs
查看更多 >