var
/
www
/
html
/
servotec-doerpen
/
wp-includes
/
blocks
| uid:33
query-pagination-numbers.php
[X]
<?php /** * Server-side rendering of the `core/query-pagination-numbers` block. * * @package WordPress */ /** * Renders the `core/query-pagination-numbers` block on the server. * * @since 5.8.0 * * @global WP_Query $wp_query WordPress Query object. * * @param array $attributes Block attributes. * @param string $content Block default content. * @param WP_Block $block Block instance. * * @return string Returns the pagination numbers for the Query. */ function render_block_core_query_pagination_numbers( $attributes, $content, $block ) { $page_key = isset( $block->context['queryId'] ) ? 'query-' . $block->context['queryId'] . '-page' : 'query-page'; $enhanced_pagination = (bool) ( $block->context['enhancedPagination'] ?? false ); $page = empty( $_GET[ $page_key ] ) ? 1 : (int) $_GET[ $page_key ]; $max_page = (int) ( $block->context['query']['pages'] ?? 0 ); $wrapper_attributes = get_block_wrapper_attributes(); $content = ''; global $wp_query; $mid_size = isset( $block->attributes['midSize'] ) ? (int) $block->attributes['midSize'] : null; if ( isset( $block->context['query']['inherit'] ) && $block->context['query']['inherit'] ) { // Take into account if we have set a bigger `max page` // than what the query has. $total = ! $max_page || $max_page > $wp_query->max_num_pages ? $wp_query->max_num_pages : $max_page; $paginate_args = array( 'prev_next' => false, 'total' => $total, ); if ( null !== $mid_size ) { $paginate_args['mid_size'] = $mid_size; } $content = paginate_links( $paginate_args ); } else { $block_query = new WP_Query( build_query_vars_from_query_block( $block, $page ) ); // `paginate_links` works with the global $wp_query, so we have to // temporarily switch it with our custom query. $prev_wp_query = $wp_query; $wp_query = $block_query; $total = ! $max_page || $max_page > $wp_query->max_num_pages ? $wp_query->max_num_pages : $max_page; $paginate_args = array( 'base' => '%_%', 'format' => "?$page_key=%#%", 'current' => max( 1, $page ), 'total' => $total, 'prev_next' => false, ); if ( null !== $mid_size ) { $paginate_args['mid_size'] = $mid_size; } if ( 1 !== $page ) { /** * `paginate_links` doesn't use the provided `format` when the page is `1`. * This is great for the main query as it removes the extra query params * making the URL shorter, but in the case of multiple custom queries is * problematic. It results in returning an empty link which ends up with * a link to the current page. * * A way to address this is to add a `fake` query arg with no value that * is the same for all custom queries. This way the link is not empty and * preserves all the other existent query args. * * @see https://developer.wordpress.org/reference/functions/paginate_links/ * * The proper fix of this should be in core. Track Ticket: * @see https://core.trac.wordpress.org/ticket/53868 * * TODO: After two WP versions (starting from the WP version the core patch landed), * we should remove this and call `paginate_links` with the proper new arg. */ $paginate_args['add_args'] = array( 'cst' => '' ); } // We still need to preserve `paged` query param if exists, as is used // for Queries that inherit from global context. $paged = empty( $_GET['paged'] ) ? null : (int) $_GET['paged']; if ( $paged ) { $paginate_args['add_args'] = array( 'paged' => $paged ); } $content = paginate_links( $paginate_args ); wp_reset_postdata(); // Restore original Post Data. $wp_query = $prev_wp_query; } if ( empty( $content ) ) { return ''; } if ( $enhanced_pagination ) { $p = new WP_HTML_Tag_Processor( $content ); $tag_index = 0; while ( $p->next_tag( array( 'class_name' => 'page-numbers' ) ) ) { if ( null === $p->get_attribute( 'data-wp-key' ) ) { $p->set_attribute( 'data-wp-key', 'index-' . $tag_index++ ); } if ( 'A' === $p->get_tag() ) { $p->set_attribute( 'data-wp-on--click', 'core/query::actions.navigate' ); } } $content = $p->get_updated_html(); } return sprintf( '<div %1$s>%2$s</div>', $wrapper_attributes, $content ); } /** * Registers the `core/query-pagination-numbers` block on the server. * * @since 5.8.0 */ function register_block_core_query_pagination_numbers() { register_block_type_from_metadata( __DIR__ . '/query-pagination-numbers', array( 'render_callback' => 'render_block_core_query_pagination_numbers', ) ); } add_action( 'init', 'register_block_core_query_pagination_numbers' );
accordion/
-
O
R
D
accordion-heading/
-
O
R
D
accordion-item/
-
O
R
D
accordion-panel/
-
O
R
D
archives/
-
O
R
D
audio/
-
O
R
D
avatar/
-
O
R
D
block/
-
O
R
D
breadcrumbs/
-
O
R
D
button/
-
O
R
D
buttons/
-
O
R
D
calendar/
-
O
R
D
categories/
-
O
R
D
code/
-
O
R
D
column/
-
O
R
D
columns/
-
O
R
D
comment-author-name/
-
O
R
D
comment-content/
-
O
R
D
comment-date/
-
O
R
D
comment-edit-link/
-
O
R
D
comment-reply-link/
-
O
R
D
comment-template/
-
O
R
D
comments/
-
O
R
D
comments-pagination/
-
O
R
D
comments-pagination-next/
-
O
R
D
comments-pagination-numbers/
-
O
R
D
comments-pagination-previous/
-
O
R
D
comments-title/
-
O
R
D
cover/
-
O
R
D
details/
-
O
R
D
embed/
-
O
R
D
file/
-
O
R
D
footnotes/
-
O
R
D
freeform/
-
O
R
D
gallery/
-
O
R
D
group/
-
O
R
D
heading/
-
O
R
D
home-link/
-
O
R
D
html/
-
O
R
D
icon/
-
O
R
D
image/
-
O
R
D
latest-comments/
-
O
R
D
latest-posts/
-
O
R
D
legacy-widget/
-
O
R
D
list/
-
O
R
D
list-item/
-
O
R
D
loginout/
-
O
R
D
math/
-
O
R
D
media-text/
-
O
R
D
missing/
-
O
R
D
more/
-
O
R
D
navigation/
-
O
R
D
navigation-link/
-
O
R
D
navigation-overlay-close/
-
O
R
D
navigation-submenu/
-
O
R
D
nextpage/
-
O
R
D
page-list/
-
O
R
D
page-list-item/
-
O
R
D
paragraph/
-
O
R
D
pattern/
-
O
R
D
post-author/
-
O
R
D
post-author-biography/
-
O
R
D
post-author-name/
-
O
R
D
post-comments-count/
-
O
R
D
post-comments-form/
-
O
R
D
post-comments-link/
-
O
R
D
post-content/
-
O
R
D
post-date/
-
O
R
D
post-excerpt/
-
O
R
D
post-featured-image/
-
O
R
D
post-navigation-link/
-
O
R
D
post-template/
-
O
R
D
post-terms/
-
O
R
D
post-time-to-read/
-
O
R
D
post-title/
-
O
R
D
preformatted/
-
O
R
D
pullquote/
-
O
R
D
query/
-
O
R
D
query-no-results/
-
O
R
D
query-pagination/
-
O
R
D
query-pagination-next/
-
O
R
D
query-pagination-numbers/
-
O
R
D
query-pagination-previous/
-
O
R
D
query-title/
-
O
R
D
query-total/
-
O
R
D
quote/
-
O
R
D
read-more/
-
O
R
D
rss/
-
O
R
D
search/
-
O
R
D
separator/
-
O
R
D
shortcode/
-
O
R
D
site-logo/
-
O
R
D
site-tagline/
-
O
R
D
site-title/
-
O
R
D
social-link/
-
O
R
D
social-links/
-
O
R
D
spacer/
-
O
R
D
table/
-
O
R
D
tag-cloud/
-
O
R
D
template-part/
-
O
R
D
term-count/
-
O
R
D
term-description/
-
O
R
D
term-name/
-
O
R
D
term-template/
-
O
R
D
terms-query/
-
O
R
D
text-columns/
-
O
R
D
verse/
-
O
R
D
video/
-
O
R
D
widget-group/
-
O
R
D
accordion-item.php
3K
V
E
R
D
accordion.php
1.1K
V
E
R
D
categories.php
4.8K
V
E
R
D
cover.php
7.2K
V
E
R
D
details.php
1.5K
V
E
R
D
home-link.php
5.3K
V
E
R
D
page-list-item.php
361
V
E
R
D
page-list.php
14.7K
V
E
R
D
post-author-biography.php
1.5K
V
E
R
D
post-featured-image.php
9K
V
E
R
D
post-time-to-read.php
6.3K
V
E
R
D
query-no-results.php
1.8K
V
E
R
D
query-pagination-numbers.php
4.6K
V
E
R
D
site-logo.php
6.2K
V
E
R
D
site-tagline.php
1.2K
V
E
R
D
social-link.php
66K
V
E
R
D
tag-cloud.php
1.6K
V
E
R
D