Allows to subsequently load results (e.g. block posts).
Add jQuery (e.g. via Google APIs) and the plugin just before the closing body tag.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="js/load-more.js"></script>
The plugin allows to specify how many new results should be loaded (default is four). You can access this option via the "count" property. In the following example, the next six results will be loaded from our database.
<script type="text/javascript">
$('.pager li').loadMore({count: 4});
</script>