0 ) {
// Instantiate pagination object with appropriate arguments
$pagesPerSection = 10;
$options = 10;
$stylePageOff = "pageOff";
$stylePageOn = "pageOn";
$styleErrors = "paginationErrors";
$styleSelect = "paginationSelect";
$Pagination = new WP_Statistics_Pagination( $total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect );
$start = $Pagination->getEntryStart();
$end = $Pagination->getEntryEnd();
$site_url = site_url();
echo "
";
$count = 0;
foreach( $uris as $uri ) {
$count++;
if( $count >= $start ) {
echo "
";
if( $uri[3] == '' ) { $uri[3] = '[' . htmlentities( __( 'No page title found', 'wp_statistics' ), ENT_QUOTES ) . ']'; }
echo "
{$count} - {$uri[3]}
";
echo "
";
echo "
";
echo "
";
}
if( $count == $start + 10 ) { break; }
}
echo "
";
}
?>