คือว่าผมอยากให้หน้าที่ผมสร้างมันมีหน้า (
www.domain.com/หน้าที่สร้าง/page2 
3 4 5 ...) เหมือนหน้า index
ใส่โค๊ด navi ไปแล้ว แต่มันไม่ขึ้นเหมือนหน้าแรก
อันนี้โค๊ดผม
<?php
/*
Template Name: Most Played
*/
?>
<?php get_header(); ?>
<div id="content">
<div id="postsbody">
<div class="newgames">
<h2 class="fontus"><?php _e("Most Viewed Movies", "Durus"); ?></h2>
<div class="gamespart">
<?php
$recent_posts = new WP_Query("v_sortby=views&v_orderby=desc&what_to_show=posts&nopaging=0&post_status=publish");
while ($recent_posts->have_posts()):
$recent_posts->the_post();
?>
<div class="ludusgame">
<div class="gamethumb">
<?php if( get_post_meta($post->ID, "thumb", true) ): ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<?php $values = get_post_custom_values("thumb"); echo $values[0]; ?>" width="152" height="193" alt="<?php the_title(); ?>"></a>
<?php else: ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/nothumb.gif" width="152" height="193" alt="<?php the_title(); ?>"></a>
<?php endif; ?>
</div>
<div class="gameinfo">
<div class="gametitle">
<center><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php $tit = the_title('','',FALSE); echo substr($tit, 0, 28); if (strlen($tit) > 28) echo " ..."; ?></a>
</center></div>
<div class="gamedesc">
</center></div>
<div class="gameviews">
<center><?php if(function_exists('the_views')) { the_views(); } ?>
</center></div>
<div class="gamevotes">
<center><?php if(function_exists('the_ratings')) { the_ratings(); } ?>
</center></div>
</div>
</div>
<?php endwhile; wp_reset_query();?>
</div>
</div>
<div class="clear">
</div>
<div class="navigation">
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi('', '', '', '', 12, false);} ?>
</div>
</div>
</div>
<?php get_footer(); ?>