چک کردم . فایل category.php وجود داشت اما کد pagenavi رو نداشت .
یه تغییر کوچولو دادم :
<?php get_header(); ?>
<div class="wa-right">
<div class="wa-right-right">
<div class="wa-box-cate-h">موضوعات</div>
<div class="wa-box-cate">
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>
</div>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('OTHER') ) ?>
</div>
<div class="wa-right-left wa-mr5">
<div class="wa-char-h"><?php single_cat_title(); ?></div>
<div class="wa-char">
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>" ><b><?php the_title(); ?></b></a> [<?php echo the_date('d M Y'); ?>]<br>
<?php the_excerpt_rss() ?>
</li>
<?php endwhile; ?>
</ul>
</div>
<center><?php wp_pagenavi(); ?></center>
<div class="wa-new-h">آخرین مطالب ارسالی</div>
<div class="wa-new">
<ul>
<?php
$recent_posts = wp_get_recent_posts();
foreach( $recent_posts as $post ){
echo '<li><a href="' . get_permalink($post["ID"]) . '" title="Look '.$post["post_title"].'" >' . $post["post_title"].'</a> </li> ';
}
?>
</ul>
</div>
</div>
</div>
<div class="wa-left">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('ADS') ) ?>
</div>
<?php get_footer(); ?>
کدهای بالا رو به جای محتویات فعلی فایل category.php قرار بدین و مجددا تست کنید .