site_oueb_2/wp-includes/blocks/query.php

17 lines
304 B
PHP
Raw Normal View History

2022-11-22 20:23:31 +01:00
<?php
/**
* Server-side rendering of the `core/query` block.
*
* @package WordPress
*/
/**
* Registers the `core/query` block on the server.
*/
function register_block_core_query() {
register_block_type_from_metadata(
__DIR__ . '/query'
);
}
add_action( 'init', 'register_block_core_query' );