render_block_core_comments_pagination

函数
render_block_core_comments_pagination ( $attributes, $content )
参数
  • (array) $attributes Block attributes.
    Required:
  • (string) $content Block default content.
    Required:
返回值
  • (string) Returns the wrapper for the Comments pagination.
定义位置
相关方法
render_block_core_comments_pagination_nextregister_block_core_comments_paginationrender_block_core_comments_pagination_numbersrender_block_core_comments_pagination_previousregister_block_core_comments_pagination_next
引入
-
弃用
-

render_block_core_comments_pagination: 这个函数用来渲染WordPress中的评论分页块。评论分页块是用来在评论的页面之间进行导航的: 这个函数负责生成评论分页块的HTML标记。

在服务器上呈现`core/comments-pagination’区块。

function render_block_core_comments_pagination( $attributes, $content ) {
	if ( empty( trim( $content ) ) ) {
		return '';
	}

	if ( post_password_required() ) {
		return;
	}

	return sprintf(
		'<div %1$s>%2$s</div>',
		get_block_wrapper_attributes(),
		$content
	);
}

常见问题

FAQs
查看更多 >