max_num_pages <= 1 ){ return; } $cafesio_paged = get_query_var( 'paged' ) ? absint( get_query_var( 'paged' ) ) : 1; $cafesio_max = intval( $wp_query->max_num_pages ); // add current page to the array if ( $cafesio_paged >= 1 ){ $cafesio_links[] = $cafesio_paged; } // add the pages around the current page to the array if ( $cafesio_paged >= 3 ) { $cafesio_links[] = $cafesio_paged - 1; $cafesio_links[] = $cafesio_paged - 2; } if ( ( $cafesio_paged + 2 ) <= $cafesio_max ) { $cafesio_links[] = $cafesio_paged + 2; $cafesio_links[] = $cafesio_paged + 1; } echo '' . "\n";