initial commit
This commit is contained in:
16
hamrokhaanpaan/wp-includes/blocks/query-pagination.php
Normal file
16
hamrokhaanpaan/wp-includes/blocks/query-pagination.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?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' );
|
Reference in New Issue
Block a user