JS
<script type="text/javascript">
$(document).ready(function(){
$(".post-link").click(function(){
$.ajax({
url: $(this).attr('rel'),
success: function(result) {
$(".post-link").hide();
$("#single-post-container").html("content loading");
$("#single-post-container").html(result.content.rendered);
}
});
return false;
});
});
</script>
PHP
<h1><?php the_title(); ?></h1>
<div id="single-post-container"></div>
<a class="post-link" rel="<?php bloginfo( 'url' );?>/wp-json/wp/v2/pages/<?php the_ID(); ?>" href="<?php the_permalink(); ?>">Wczytaj treść strony</a>
<a class="post-link" rel="<?php bloginfo( 'url' );?>/wp-json/wp/v2/posts/<?php the_ID(); ?>" href="<?php the_permalink(); ?>">Wczytaj treść wpisu</a>
Demo
Strona główna bloga