$56 GRAYBYTE WORDPRESS FILE MANAGER $95

SERVER : webd004.cluster105.gra.hosting.ovh.net #1 SMP Fri May 15 02:41:25 UTC 2026
SERVER IP : 213.186.33.16 | ADMIN IP 216.73.217.13
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : _dyuweyrj4,_dyuweyrj4r,dl

/home/agencefrei/www/wp-includes/blocks/

HOME
Current File : /home/agencefrei/www/wp-includes/blocks//query-pagination-numbers.php
<?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' );


Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
1 Jun 2026 11.32 PM
agencefrei / users
0705
accordion
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
accordion-heading
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
accordion-item
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
accordion-panel
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
archives
--
20 May 2026 11.16 PM
agencefrei / users
0705
audio
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
avatar
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
block
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
breadcrumbs
--
20 May 2026 11.16 PM
agencefrei / users
0755
button
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
buttons
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
calendar
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
categories
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
code
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
column
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
columns
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
comment-author-name
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
comment-content
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comment-date
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comment-edit-link
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comment-reply-link
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
comment-template
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comments
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comments-pagination
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comments-pagination-next
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
comments-pagination-numbers
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
comments-pagination-previous
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
comments-title
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
cover
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
details
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
embed
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
file
--
20 May 2026 11.16 PM
agencefrei / users
0705
footnotes
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
freeform
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
gallery
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
group
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
heading
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
home-link
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
html
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
icon
--
20 May 2026 11.16 PM
agencefrei / users
0755
image
--
20 May 2026 11.16 PM
agencefrei / users
0705
latest-comments
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
latest-posts
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
legacy-widget
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
list
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
list-item
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
loginout
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
math
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
media-text
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
missing
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
more
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
navigation
--
20 May 2026 11.16 PM
agencefrei / users
0705
navigation-link
--
20 May 2026 11.16 PM
agencefrei / users
0705
navigation-overlay-close
--
20 May 2026 11.16 PM
agencefrei / users
0755
navigation-submenu
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
nextpage
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
page-list
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
page-list-item
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
paragraph
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
pattern
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
post-author
--
20 May 2026 11.16 PM
agencefrei / users
0705
post-author-biography
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-author-name
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-comments-count
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-comments-form
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-comments-link
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-content
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
post-date
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-excerpt
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-featured-image
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
post-navigation-link
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-template
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-terms
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-time-to-read
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
post-title
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
preformatted
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
pullquote
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query
--
20 May 2026 11.16 PM
agencefrei / users
0705
query-no-results
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-pagination
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-pagination-next
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-pagination-numbers
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-pagination-previous
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-title
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
query-total
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
quote
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
read-more
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
rss
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
search
--
20 May 2026 11.16 PM
agencefrei / users
0705
separator
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
shortcode
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
site-logo
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
site-tagline
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
site-title
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
social-link
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
social-links
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
spacer
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
table
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
tag-cloud
--
20 May 2026 11.16 PM
agencefrei / users
0705
template-part
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
term-count
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
term-description
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
term-name
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
term-template
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
terms-query
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
text-columns
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
verse
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
video
--
6 Mar 2026 5.43 PM
agencefrei / users
0705
widget-group
--
6 Mar 2026 5.44 PM
agencefrei / users
0705
accordion-item.php
2.97 KB
20 May 2026 11.16 PM
agencefrei / users
0644
accordion.php
1.12 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
archives.php
4.282 KB
20 May 2026 11.16 PM
agencefrei / users
0644
avatar.php
5.502 KB
20 May 2026 11.16 PM
agencefrei / users
0644
block.php
4.088 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
blocks-json.php
194.456 KB
20 May 2026 11.16 PM
agencefrei / users
0644
breadcrumbs.php
18.61 KB
20 May 2026 11.16 PM
agencefrei / users
0644
button.php
1.711 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
calendar.php
5.933 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
categories.php
4.822 KB
20 May 2026 11.16 PM
agencefrei / users
0644
comment-author-name.php
2.083 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comment-content.php
2.401 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comment-date.php
1.819 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comment-edit-link.php
1.673 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comment-reply-link.php
2.026 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comment-template.php
4.389 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comments-pagination-next.php
1.879 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comments-pagination-numbers.php
1.594 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comments-pagination-previous.php
1.748 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comments-pagination.php
1.231 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
comments-title.php
2.722 KB
20 May 2026 11.16 PM
agencefrei / users
0644
comments.php
6.625 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
cover.php
7.248 KB
20 May 2026 11.16 PM
agencefrei / users
0644
details.php
1.463 KB
20 May 2026 11.16 PM
agencefrei / users
0644
file.php
1.835 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
footnotes.php
3.729 KB
20 May 2026 11.16 PM
agencefrei / users
0644
gallery.php
8.854 KB
20 May 2026 11.16 PM
agencefrei / users
0644
heading.php
1.271 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
home-link.php
5.311 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
icon.php
4.042 KB
20 May 2026 11.16 PM
agencefrei / users
0644
image.php
17.247 KB
20 May 2026 11.16 PM
agencefrei / users
0644
index.php
4.991 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
latest-comments.php
5.359 KB
20 May 2026 11.16 PM
agencefrei / users
0644
latest-posts.php
8.636 KB
20 May 2026 11.16 PM
agencefrei / users
0644
legacy-widget.php
3.917 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
list.php
1.243 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
loginout.php
1.625 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
media-text.php
4.197 KB
20 May 2026 11.16 PM
agencefrei / users
0644
navigation-link.php
15.841 KB
20 May 2026 11.16 PM
agencefrei / users
0644
navigation-overlay-close.php
1.724 KB
20 May 2026 11.16 PM
agencefrei / users
0644
navigation-submenu.php
11.469 KB
20 May 2026 11.16 PM
agencefrei / users
0644
navigation.php
63.298 KB
20 May 2026 11.16 PM
agencefrei / users
0644
page-list-item.php
0.353 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
page-list.php
14.716 KB
20 May 2026 11.16 PM
agencefrei / users
0644
paragraph.php
1.112 KB
20 May 2026 11.16 PM
agencefrei / users
0644
pattern.php
1.746 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-author-biography.php
1.488 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-author-name.php
1.905 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-author.php
2.67 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-comments-count.php
1.245 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-comments-form.php
2.739 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-comments-link.php
2.185 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-content.php
2.292 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-date.php
3.569 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-excerpt.php
4.214 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-featured-image.php
9.031 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-navigation-link.php
4.694 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-template.php
5.554 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-terms.php
3.555 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
post-time-to-read.php
6.261 KB
20 May 2026 11.16 PM
agencefrei / users
0644
post-title.php
2.088 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
query-no-results.php
1.804 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
query-pagination-next.php
3.59 KB
20 May 2026 11.16 PM
agencefrei / users
0644
query-pagination-numbers.php
4.59 KB
20 May 2026 11.16 PM
agencefrei / users
0644
query-pagination-previous.php
3.392 KB
20 May 2026 11.16 PM
agencefrei / users
0644
query-pagination.php
1.148 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
query-title.php
2.706 KB
20 May 2026 11.16 PM
agencefrei / users
0644
query-total.php
2.413 KB
20 May 2026 11.16 PM
agencefrei / users
0644
query.php
5.557 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
read-more.php
1.787 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
require-dynamic-blocks.php
4.861 KB
20 May 2026 11.16 PM
agencefrei / users
0644
require-static-blocks.php
0.508 KB
20 May 2026 11.16 PM
agencefrei / users
0644
rss.php
4.501 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
search.php
23.259 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
shortcode.php
0.718 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
site-logo.php
6.186 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
site-tagline.php
1.175 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
site-title.php
1.82 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
social-link.php
66.018 KB
20 May 2026 11.16 PM
agencefrei / users
0644
tag-cloud.php
1.553 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
template-part.php
10.201 KB
20 May 2026 11.16 PM
agencefrei / users
0644
term-count.php
1.8 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
term-description.php
1.729 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
term-name.php
1.99 KB
20 May 2026 11.16 PM
agencefrei / users
0644
term-template.php
4.412 KB
6 Mar 2026 7.54 PM
agencefrei / users
0644
video.php
2.669 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604
widget-group.php
2.381 KB
6 Mar 2026 5.42 PM
agencefrei / users
0604

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF Static GIF