wpseek.com
A WordPress-centric search engine for devs and theme authors



register_block_core_query_pagination_previous › WordPress Function

Sincen/a
Deprecatedn/a
register_block_core_query_pagination_previous ( No parameters )
Defined at:
Codex:

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



Source

function register_block_core_query_pagination_previous() {
	register_block_type_from_metadata(
		__DIR__ . '/query-pagination-previous',
		array(
			'render_callback' => 'render_block_core_query_pagination_previous',
		)
	);
}