mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
17 lines
359 B
PHP
17 lines
359 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Server-side rendering of the `core/query-pagination` block.
|
||
|
*
|
||
|
* @package WordPress
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Registers the `core/query-pagination` block on the server.
|
||
|
*/
|
||
|
function register_block_core_query_pagination() {
|
||
|
register_block_type_from_metadata(
|
||
|
__DIR__ . '/query-pagination'
|
||
|
);
|
||
|
}
|
||
|
add_action( 'init', 'register_block_core_query_pagination' );
|