var link = $('.posts__item__link');
link.click(function(){
var link = $(this);
$.ajax({
url: link.attr('href'),
type: 'get',
data: {
mode: 'ajax'
},
success: function(data){
}
});
return false;
});
Если в запросе не хочешь возвращать всю страницу с header и footer
<?php $mode = ($_GET['mode'] == 'ajax') ? 'ajax' : 'direct'; ?>
<?php if($mode == 'direct') : ?>
<?php get_header(); ?>
<?php endif; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php if($mode == 'direct') : ?>
<?php get_footer(); ?>
<?php endif; ?>