HEX
Server: LiteSpeed
System: Linux l24.yourwebhosting.net 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User: turkishi (1582)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/wp-content/plugins/wp-event-manager/templates/pagination.php
<?php
/**
 * Pagination - Show numbered pagination for catalog pages.
 */

if(!defined('ABSPATH')) exit; // Exit if accessed directly

if($max_num_pages <= 1) {
	return;
} ?>

<nav class="event-manager-pagination-2">
	<?php
	$current_page = is_front_page() ? max(1, get_query_var('page')) : max(1, get_query_var('paged'));
		echo wp_kses_post(
			paginate_links(
				apply_filters(
					'event_manager_pagination_args', 
					array(
						'base'      => esc_url_raw(str_replace(999999999, '%#%', get_pagenum_link(999999999, false))),
						'format'    => '',
						'current'   => $current_page,
						'total'     => $max_num_pages,
						'prev_text' => '&larr;',
						'next_text' => '&rarr;',
						'type'      => 'list',
						'end_size'  => 3,
						'mid_size'  => 3
					)
				)
			)
		);
	?>
</nav>