暫無描述

query-pagination.php 359B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Server-side rendering of the `core/query-pagination` block.
  4. *
  5. * @package WordPress
  6. */
  7. /**
  8. * Registers the `core/query-pagination` block on the server.
  9. */
  10. function register_block_core_query_pagination() {
  11. register_block_type_from_metadata(
  12. __DIR__ . '/query-pagination'
  13. );
  14. }
  15. add_action( 'init', 'register_block_core_query_pagination' );