<div class="contents">
<?php if (have_posts()) :while (have_posts()) : the_post();?>

<div class="post"></div>
<div class="post"></div>
<div class="post"></div>
<div class="post"></div>

<?php endwhile; ?>

</div>

<div class="ajaxLoad">
<?php next_posts_link('もっと見る'); ?>
</div>

<script>
$(function(){
    $.autopager({
        content : '.post',
        link    : '.ajaxLoad a',
        autoLoad: false,
        load: function(current, next) {
            if( current.page >= <?php echo $wp_query->max_num_pages; ?> ){ $('.ajaxLoad').hide(); }
        }
    });
    $('.ajaxLoad a').click(function(){
        $.autopager('load');
        return false;
    });
});

WordPress プラグインwp-jquery-lightboxを使用してます
ページネーションにjquery-autopagerを使用してますが
2ページ目以降にlightboxが効かなくなります
お願いできますか