Juanita @ WP Page Numbers
- Alias: Juanita
- Skickat: 2009-11-24 @ 17:51
- Kommenterat: WP Page Numbers
fixed that bug in the plugin file wp-page-numbers.php
change
if($max_page > 1)
echo $start . $pagingString . $end;
}
to
if($max_page > 1)
//added variables start end – Juanita Chronowski
$start = ”\n”;
$end = ”\n”;
echo $start . $pagingString . $end;
}