max_num_pages; if(!$pages){ $pages = 1; } } if(1 != $pages){ echo "
"; // first page if($paged > 2 && $paged > $range+1 && $showitems < $pages){ echo ''; _e('« First', 'gdl_front_end'); echo ''; } // previous page if($paged > 1 && $showitems < $pages){ echo ''; _e('‹ Previous', 'gdl_front_end'); echo ''; } // middle page for ($i=1; $i <= $pages; $i++){ if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems )){ echo ($paged == $i)? "".$i."":"".$i.""; } } // next page if ($paged < $pages && $showitems < $pages){ echo ''; _e('Next ›', 'gdl_front_end'); echo ''; } // last page if ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages){ echo ''; _e('Last »', 'gdl_front_end'); echo ''; } echo '
'; echo '
'; // gdl pagination } } } ?>