Changeset 53302 for trunk/src/wp-includes/blocks.php
- Timestamp:
- 04/28/2022 09:57:51 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks.php
r53298 r53302 1194 1194 1195 1195 /** 1196 * Helper function that returns the proper pagination arrow htmlfor1196 * Helper function that returns the proper pagination arrow HTML for 1197 1197 * `QueryPaginationNext` and `QueryPaginationPrevious` blocks based 1198 1198 * on the provided `paginationArrow` from `QueryPagination` context. … … 1205 1205 * @param boolean $is_next Flag for handling `next/previous` blocks. 1206 1206 * 1207 * @return string|null Returns the constructed WP_Query arguments.1207 * @return string|null The pagination arrow HTML or null if there is none. 1208 1208 */ 1209 1209 function get_query_pagination_arrow( $block, $is_next ) { … … 1283 1283 * 1284 1284 * @return array Returns the comment query parameters to use with the 1285 * WP_Comment_Query constructor.1285 * WP_Comment_Query constructor. 1286 1286 */ 1287 1287 function build_comment_query_vars_from_block( $block ) { … … 1340 1340 1341 1341 /** 1342 * Helper function that returns the proper pagination arrow htmlfor1342 * Helper function that returns the proper pagination arrow HTML for 1343 1343 * `CommentsPaginationNext` and `CommentsPaginationPrevious` blocks based on the 1344 1344 * provided `paginationArrow` from `CommentsPagination` context. … … 1352 1352 * Default 'next'. Accepts 'next' or 'previous'. 1353 1353 * 1354 * @return string|null Returns the constructed WP_Query arguments.1354 * @return string|null The pagination arrow HTML or null if there is none. 1355 1355 */ 1356 1356 function get_comments_pagination_arrow( $block, $pagination_type = 'next' ) {
Note: See TracChangeset
for help on using the changeset viewer.