register_block_core_query_pagination_numbers

函数


register_block_core_query_pagination_numbers ( No parameters )
定义位置
  • wp-includes/blocks/query-pagination-numbers.php
    , line 93
引入
弃用

Registers the `core/query-pagination-numbers` block on the server.

function register_block_core_query_pagination_numbers() {
	register_block_type_from_metadata(
		__DIR__ . '/query-pagination-numbers',
		array(
			'render_callback' => 'render_block_core_query_pagination_numbers',
		)
	);
}