Was not showing paging links. Simply changed the entries per page to 50.
// $query.=' ORDER BY ' . $orderby . ' ' . $order;
$query.=' ORDER BY last_name, first_name ';
$totalitems = $wpdb->query($query); //return the total number of affected rows
- $perpage = 20;
+ $perpage = 50;
$paged = filter_input(INPUT_GET, 'paged');
if (empty($paged) || !is_numeric($paged) || $paged <= 0) {
$paged = 1;
Author: Gaslight Media
Author URI: http://www.gaslightmedia.com
Description: A theme for WequetonsingAssociation
-Version: 1.0.15
+Version: 1.0.16
*/