Aşağıdaki gibi bir manşetim var bu alan için ajax pagination yapılması lazım.
Bu konuda bana yardımcı olabilir misiniz?

Bunlarda kodlarım;
<!-- Alt Manşet -->
<div class="manset_index_dis">
<div class="manset_head">Derneğimizden Haberler </div>
<div class="manset_body">
<ul class="manset_list_image">
<?php $recent = new WP_Query("showposts=40&cat=1"); while($recent->have_posts()) : $recent->the_post();?>
<li>
<h2><?php echo mb_substr (the_title('','',false), 0 , 80); ?></h2>
<br />
<?php
if (has_post_thumbnail()) {
$attachment_id = get_post_thumbnail_id($post->ID);
$image_attributes = wp_get_attachment_image_src( $attachment_id );
$large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'thumbnail');
?>
<a href="<?php the_permalink();?>">
<img src="<?php echo $large_image_url[0]; ?>" width="<?php echo $large_image_url[1]; ?>" height="<?php echo
$large_image_url[2]; ?>" alt="<?php the_title(); ?>" width="90" height="105" />
</a>
<div style="width:280px;"> <?php the_content_rss('', TRUE, '', 28); ?></div>
<?php
}else {
?>
<a href="<?php the_permalink();?>">
<img src="<?php bloginfo('template_url')?>/images/noimage.jpg" alt="<?php the_title(); ?>" width="90" height="105"/>
<?php // echo mb_substr (the_title('','',false), 0 , 38); ?></a><span><?php // echo date("j , F-Y");?></span>
<?php } ?>
</li>
<?php endwhile;?>
</ul>
<ul id="holder" class="manset_list_text">
<?php $recent = new WP_Query("showposts=40&cat=1"); while($recent->have_posts()) : $recent->the_post();?>
<li><a href="<?php the_permalink();?>" ><?php echo mb_substr (the_title('','',false), 0 , 46); ?></a></li>
<?php endwhile;?>
</ul>
</div>
<div class="manset_foot"></div>
</div>
<!-- Alt Manşet Sonu -->