| 1 |
<?php |
| 2 |
/** |
| 3 |
* Server-side rendering of the `core/query-pagination` block. |
| 4 |
* |
| 5 |
* @package WordPress |
| 6 |
*/ |
| 7 |
|
| 8 |
/** |
| 9 |
* Renders the `core/query-pagination` block on the server. |
| 10 |
* |
| 11 |
* @param array $attributes Block attributes. |
| 12 |
* @param string $content Block default content. |
| 13 |
* |
| 14 |
* @return string Returns the wrapper for the Query pagination. |
| 15 |
*/ |
| 16 |
function gutenberg_render_block_core_query_pagination( $attributes, $content ) { |
| 17 |
if ( empty( trim( $content ) ) ) { |
| 18 |
return ''; |
| 19 |
} |
| 20 |
|
| 21 |
return sprintf( |
| 22 |
'<div %1$s>%2$s</div>', |
| 23 |
get_block_wrapper_attributes(), |
| 24 |
$content |
| 25 |
); |
| 26 |
} |
| 27 |
|
| 28 |
/** |
| 29 |
* Registers the `core/query-pagination` block on the server. |
| 30 |
*/ |
| 31 |
function gutenberg_register_block_core_query_pagination() { |
| 32 |
register_block_type_from_metadata( |
| 33 |
__DIR__ . '/query-pagination', |
| 34 |
array( |
| 35 |
'render_callback' => 'gutenberg_render_block_core_query_pagination', |
| 36 |
) |
| 37 |
); |
| 38 |
} |
| 39 |
add_action( 'init', 'gutenberg_register_block_core_query_pagination', 20 ); |
| 40 |
|