Lz127 Hi, thanks! Those options are depending on the template in use. I guess you’re using one of the standard templates. Basically you can just set the limit
to three. That will only show the latest three posts. But it will also show a pagination at the bottom. Without modifying the template, you could try to add some custom CSS to the itemsHeader
variable to hide the pagination as follows:
<style>
.uk-pagination { display: none; }
</style>
Note that this is not tested. 😉