'',
'after' => '', 'previouspagelink' => 'Previous', 'nextpagelink' => '',
'next_or_number' => 'next'
));
// This shows the page count i.e. "1 of 5"
echo ($page . ' of ' . count($pages));
// This shows the Next link
wp_link_pages(array(
'before' => '', 'after' => '
', 'previouspagelink' => '',
'nextpagelink' => 'Next', 'next_or_number' => 'next'
));
?>