Merhaba, Wordpress tabanını kullanarak bir sözlük sitesi oluşturdum. WP_Query ile sol kısma son başlıkları çekiyorum ama o kısımda başlıklar 30 arlı gruplar halinde 1-2-3 diye sayfalansın istiyorum. Kullandığım kod bu :

<div id="left">
<?php if(is_home()) { $recent = new WP_Query("showposts=30&orderby=date&order=desc&offset=5"); } else { $recent = new WP_Query("showposts=30&orderby=date&order=desc"); } while ( $recent->have_posts() ) : $recent->the_post(); ?>
<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> <?php comments_number('', '(1)', '(%)' );?></h3>
<?php endwhile; wp_reset_query(); ?>
</div>
Bu koda nasıl bir ekleme yapmam gerekir