| Server IP : 47.82.179.145 / Your IP : 216.73.217.129 Web Server : nginx/1.26.3 System : Linux iZt4n9czhka2zvqfajdlr2Z 6.8.0-63-generic #66-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 13 20:25:30 UTC 2025 x86_64 User : www ( 1001) PHP Version : 8.3.30 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/scuipturepactory.com/wp-content/themes/ashe/templates/grid/ |
Upload File : |
<?php
global $paged;
global $wp_query;
$pages = $wp_query->max_num_pages;
$range = 2;
$showitems = ( $range * 2 ) + 1;
$post_pagination = ashe_options( 'blog_page_post_pagination' );
if ( empty( $paged ) ) {
$paged = 1;
}
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...', 'ashe' ); ?>" >
<?php
// Numeric Pagination
if ( $post_pagination === 'numeric' ) {
// Previous Page
if ( $paged > 1 ) {
echo '<a href="'. esc_url( get_pagenum_link( $paged - 1 ) ) .'" class="numeric-prev-page" ><i class="fa-solid fa-arrow-left-long"></i></a>';
}
// Pagination
for ( $i = 1; $i <= $pages; $i++ ) {
if ( 1 != $pages &&( !( $i >= $paged + $range + 1 || $i <= $paged - $range - 1 ) || $pages <= $showitems ) ) {
if ( $paged == $i ) {
echo '<span class="numeric-current-page">'. $i .'</span>';
} else {
echo '<a href="'. esc_url( get_pagenum_link( $i ) ). '">'. $i .'</a>';
}
}
}
// Next Page
if ( $paged < $pages ) {
echo '<a href="'. esc_url( get_pagenum_link( $paged + 1 ) ).'" class="numeric-next-page" ><i class="fa-solid fa-arrow-right-long"></i></a>';
}
// Default Pagination
} elseif ( $post_pagination === 'default' ) {
if ( get_next_posts_link() ) {
echo '<div class="previous-page">';
next_posts_link( '<i class="fa-solid fa-arrow-left-long"></i> '.esc_html__( 'Older Posts', 'ashe' ) );
echo '</div>';
}
if ( get_previous_posts_link() ) {
echo '<div class="next-page">';
previous_posts_link( esc_html__( 'Newer Posts', 'ashe' ).' <i class="fa-solid fa-arrow-right-long"></i>' );
echo '</div>';
}
// Load More / Infinite Scroll
} else {
next_posts_link( esc_html__( 'Load More', 'ashe' ) );
}
?>
</nav>