<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through? If so, show navigation ?>
<?php previous_comments_link( __( '← Older Comments', 'shape' ) ); ?>
<?php next_comments_link( __( 'Newer Comments →', 'shape' ) ); ?>
<?php endif; // check for comment navigation ?>
// Ajax comments
$.ajaxSetup({cache:false});
$(".nav-next a").click(function(event){
event.preventDefault();
$(this).hide();
var post_link = $(this).attr("href");
$("#single-post-container").load(post_link+" li.comment");
$(".commentlist").append($("#single-post-container"));
return false;
});