HEX
Server: Apache/2.4.38 (Debian)
System: Linux host457 5.14.0-4-amd64 #1 SMP Debian 5.14.16-1 (2021-11-03) x86_64
User: www-data (33)
PHP: 7.4.21
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/vhosts/harpoeditore.it/httpdocs/wp-content/themes/bard/templates/grid/blog-pagination.php
<?php 

global $paged;
global $wp_query;
$pages = $wp_query->max_num_pages;
$range = 2;
$showitems = ( $range * 2 ) + 1;
$post_pagination = bard_options( 'blog_page_post_pagination' );

if ( empty( $paged ) ) {
	$pagedd = 1;
} else {
	$pagedd = $paged;
}

if ( ! $pages ) {
	$pages = 1;
}

if ( $pages == 1 ) {
	return;
}

// Check for WooCommerce
if ( class_exists( 'WooCommerce' ) ) {
	if ( is_shop() ) {
		$post_pagination = 'numeric';
	}
}

?>

<nav class="blog-pagination clear-fix <?php echo esc_attr( $post_pagination ); ?>" data-max-pages="<?php echo esc_attr( $wp_query->max_num_pages ); ?>" data-loading="<?php esc_attr_e( 'Loading...', 'bard' ); ?>" >

<?php

// Numeric Pagination
if ( $post_pagination === 'numeric' ) {

	//  Previous Page
	if ( $pagedd > 1 ) {
		echo '<a href="'. esc_url( get_pagenum_link( $pagedd - 1 ) ) .'" class="numeric-prev-page" ><i class="fas fa-long-arrow-alt-left"></i></a>';
	}
	
	// Pagination
	for ( $i = 1; $i <= $pages; $i++ ) {
		if ( 1 != $pages &&( !( $i >= $pagedd + $range + 1 || $i <= $pagedd - $range - 1 ) || $pages <= $showitems ) ) {
			if ( $pagedd == $i ) {
				echo '<span class="numeric-current-page">'. esc_html( $i ) .'</span>';
			} else {
				echo '<a href="'. esc_url( get_pagenum_link( $i ) ). '">'. esc_html( $i ) .'</a>';
			}
		}
	}

	// Next Page
	if ( $pagedd < $pages ) {
		echo '<a href="'. esc_url( get_pagenum_link( $pagedd + 1 ) ).'" class="numeric-next-page" ><i class="fas fa-long-arrow-alt-right"></i></a>';
	}

// Default Pagination
} elseif ( $post_pagination === 'default' ) {

	if ( get_next_posts_link() ) {
		echo '<div class="previous-page">';
			next_posts_link( '<i class="fas fa-long-arrow-alt-left"></i>&nbsp;'.esc_html__( 'Older Posts', 'bard' ) );
		echo '</div>';
	}
	
	if ( get_previous_posts_link() ) {
		echo '<div class="next-page">';
			previous_posts_link( esc_html__( 'Newer Posts', 'bard' ).'&nbsp;<i class="fas fa-long-arrow-alt-right"></i>' );
		echo '</div>';
	}

// Load More / Infinite Scroll
} else {
	next_posts_link( esc_html__( 'Load More', 'bard' ) );
}

?>

</nav>