render_block_core_post_author_biography

函数
render_block_core_post_author_biography ( $attributes, $content, $block )
参数
  • (array) $attributes Block attributes.
    Required:
  • (string) $content Block default content.
    Required:
  • (WP_Block) $block Block instance.
    Required:
返回值
  • (string) Returns the rendered post author biography block.
定义位置
相关方法
register_block_core_post_author_biographyrender_block_core_post_authorregister_block_core_post_authorrender_block_core_post_daterender_block_core_post_featured_image
引入
-
弃用
-

render_block_core_post_author_biography: 这个函数用来渲染WordPress中的作者传记块。作者传记块显示关于一个文章的作者的信息,包括他们的名字、照片和简短的简历: 这个函数负责生成作者传记块的HTML标记。

在服务器上呈现`core/post-author-biography’区块。

function render_block_core_post_author_biography( $attributes, $content, $block ) {
	if ( ! isset( $block->context['postId'] ) ) {
		return '';
	}

	$author_id = get_post_field( 'post_author', $block->context['postId'] );
	if ( empty( $author_id ) ) {
		return '';
	}

	$author_biography = get_the_author_meta( 'description', $author_id );
	if ( empty( $author_biography ) ) {
		return '';
	}

	$align_class_name   = empty( $attributes['textAlign'] ) ? '' : "has-text-align-{$attributes['textAlign']}";
	$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $align_class_name ) );

	return sprintf( '<div %1$s>', $wrapper_attributes ) . $author_biography . '</div>';
}

常见问题

FAQs
查看更多 >