Skip to content

Commit

Permalink
Merge pull request #113 from wpstarter/dev
Browse files Browse the repository at this point in the history
Livewire paginator next link
  • Loading branch information
as247 committed Jan 18, 2024
2 parents 498aa3b + 45a589e commit 149ae5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/WpStarter/Wordpress/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Application extends \WpStarter\Foundation\Application
*
* @var string
*/
const VERSION = '1.9.5';
const VERSION = '1.9.6';

protected $bootstrappedList = [];

Expand Down
2 changes: 1 addition & 1 deletion src/WpStarter/Wordpress/Services/Livewire.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ function paginateLinks( $args = [] ) {
$link .= $args['add_fragment'];

$page_links[] = sprintf(
'<a class="next page-numbers" href="%s" wire:click.prevent="previousPage(%s)">%s</a>',
'<a class="next page-numbers" href="%s" wire:click.prevent="nextPage(%s)">%s</a>',
esc_url( apply_filters( 'livewire_paginate_links', $link, 'next' ) ),
"'{$args['page_name']}'",
$args['next_text']
Expand Down

0 comments on commit 149ae5a

Please sign in to comment.