2021-05-19 17:09:27 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Server-side rendering of the `core/query-pagination-previous` block.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the `core/query-pagination-previous` block on the server.
|
|
|
|
*
|
|
|
|
* @param array $attributes Block attributes.
|
|
|
|
* @param string $content Block default content.
|
|
|
|
* @param WP_Block $block Block instance.
|
|
|
|
*
|
|
|
|
* @return string Returns the previous posts link for the query.
|
|
|
|
*/
|
|
|
|
function render_block_core_query_pagination_previous( $attributes, $content, $block ) {
|
2023-09-26 16:23:26 +02:00
|
|
|
$page_key = isset( $block->context['queryId'] ) ? 'query-' . $block->context['queryId'] . '-page' : 'query-page';
|
|
|
|
$enhanced_pagination = isset( $block->context['enhancedPagination'] ) && $block->context['enhancedPagination'];
|
|
|
|
$page = empty( $_GET[ $page_key ] ) ? 1 : (int) $_GET[ $page_key ];
|
2021-05-19 17:09:27 +02:00
|
|
|
|
|
|
|
$wrapper_attributes = get_block_wrapper_attributes();
|
2023-06-27 16:24:19 +02:00
|
|
|
$show_label = isset( $block->context['showLabel'] ) ? (bool) $block->context['showLabel'] : true;
|
2021-11-08 15:29:21 +01:00
|
|
|
$default_label = __( 'Previous Page' );
|
2023-06-27 16:24:19 +02:00
|
|
|
$label_text = isset( $attributes['label'] ) && ! empty( $attributes['label'] ) ? esc_html( $attributes['label'] ) : $default_label;
|
|
|
|
$label = $show_label ? $label_text : '';
|
2021-11-08 15:29:21 +01:00
|
|
|
$pagination_arrow = get_query_pagination_arrow( $block, false );
|
2023-06-27 16:24:19 +02:00
|
|
|
if ( ! $label ) {
|
|
|
|
$wrapper_attributes .= ' aria-label="' . $label_text . '"';
|
|
|
|
}
|
2021-11-08 15:29:21 +01:00
|
|
|
if ( $pagination_arrow ) {
|
|
|
|
$label = $pagination_arrow . $label;
|
|
|
|
}
|
|
|
|
$content = '';
|
2021-05-19 17:09:27 +02:00
|
|
|
// Check if the pagination is for Query that inherits the global context
|
|
|
|
// and handle appropriately.
|
|
|
|
if ( isset( $block->context['query']['inherit'] ) && $block->context['query']['inherit'] ) {
|
2023-09-26 16:23:26 +02:00
|
|
|
$filter_link_attributes = static function () use ( $wrapper_attributes ) {
|
2021-05-19 17:09:27 +02:00
|
|
|
return $wrapper_attributes;
|
|
|
|
};
|
2022-04-12 17:12:47 +02:00
|
|
|
|
2021-05-19 17:09:27 +02:00
|
|
|
add_filter( 'previous_posts_link_attributes', $filter_link_attributes );
|
|
|
|
$content = get_previous_posts_link( $label );
|
|
|
|
remove_filter( 'previous_posts_link_attributes', $filter_link_attributes );
|
|
|
|
} elseif ( 1 !== $page ) {
|
|
|
|
$content = sprintf(
|
|
|
|
'<a href="%1$s" %2$s>%3$s</a>',
|
|
|
|
esc_url( add_query_arg( $page_key, $page - 1 ) ),
|
|
|
|
$wrapper_attributes,
|
|
|
|
$label
|
|
|
|
);
|
|
|
|
}
|
2023-09-26 16:23:26 +02:00
|
|
|
|
Editor: 2nd update of npm packages for 6.4 RC3.
This second update for RC3 includes the following fixes:
* [https://github.com/WordPress/gutenberg/pull/55724 Update label for lightbox editor UI] - string change.
* [https://github.com/WordPress/gutenberg/pull/55720 Query: Require queryId for enhanced pagination to prevent PHP notices] and warnings.
* [https://github.com/WordPress/gutenberg/pull/55714 Query block enhanced pagination: Detect inner plugin blocks during render] - which avoids turning off enhanced pagination in TT4, includes string changes.
* [https://github.com/WordPress/gutenberg/pull/55309 Query Loop block: Reuse existing screen-reader-text CSS class for the enhanced pagination aria-live region].
Follow up to [57034], [56987], [56961], [56849], [56818], [56816].
Props afercia, aristath, artemiosans, czapla, darerodz, glendaviesnz, hellofromTonya, jameskoster, joen, luisherranz, mikachan, ocean90, peterwilsoncc, ramonopoly, rajinsharwar, swissspidy.
Fixes #59411.
Built from https://develop.svn.wordpress.org/trunk@57048
git-svn-id: http://core.svn.wordpress.org/trunk@56559 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-11-01 18:49:17 +01:00
|
|
|
if ( $enhanced_pagination && isset( $content ) ) {
|
2023-09-26 16:23:26 +02:00
|
|
|
$p = new WP_HTML_Tag_Processor( $content );
|
|
|
|
if ( $p->next_tag(
|
|
|
|
array(
|
|
|
|
'tag_name' => 'a',
|
|
|
|
'class_name' => 'wp-block-query-pagination-previous',
|
|
|
|
)
|
|
|
|
) ) {
|
|
|
|
$p->set_attribute( 'data-wp-key', 'query-pagination-previous' );
|
Editor: Update the WordPress packages to the Gutenberg 16.7 RC2 version.
This patch, somewhat small brings a lot to WordPress.
This includes features like:
- DataViews.
- Customization tools like box shadow, background size and repeat.
- UI improvements in the site editor.
- Preferences sharing between the post and site editors.
- Unified panels and editors between post and site editors.
- Improved template mode in the post editor.
- Iterations to multiple interactive blocks.
- Preparing the blocks and UI for pattern overrides.
- and a lot more.
Props luisherranz, gziolo, isabel_brison, costdev, jonsurrell, peterwilsoncc, get_dave, antonvlasenko, desrosj.
See #60315.
Built from https://develop.svn.wordpress.org/trunk@57377
git-svn-id: http://core.svn.wordpress.org/trunk@56883 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2024-01-29 22:07:12 +01:00
|
|
|
$p->set_attribute( 'data-wp-on--click', 'core/query::actions.navigate' );
|
|
|
|
$p->set_attribute( 'data-wp-on--mouseenter', 'core/query::actions.prefetch' );
|
|
|
|
$p->set_attribute( 'data-wp-watch', 'core/query::callbacks.prefetch' );
|
2023-09-26 16:23:26 +02:00
|
|
|
$content = $p->get_updated_html();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 17:09:27 +02:00
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers the `core/query-pagination-previous` block on the server.
|
|
|
|
*/
|
|
|
|
function register_block_core_query_pagination_previous() {
|
|
|
|
register_block_type_from_metadata(
|
|
|
|
__DIR__ . '/query-pagination-previous',
|
|
|
|
array(
|
|
|
|
'render_callback' => 'render_block_core_query_pagination_previous',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
add_action( 'init', 'register_block_core_query_pagination_previous' );
|