So, I'm currently working on a website for a business and they would like a News Feed implemented. Something their media staff can use to write stories to without going through myself to publish them. I've turned to October CMS to implement this feature in the form of a Blog as it does what the business wants.
However, along with the Blog they would also like a preview of the most recent stories displayed on the homepage of the site.
Now, I've managed to place a list of the published Blog posts on the homepage however it's just going to act as normal and show every single blog post that has been published through the form of a pagination.
Is there a way to limit this Blog posts feed so that it only shows the most recent 3 or 4 blog posts published?
-- EDIT --
Hello again,
I'm editing this question to notify anyone who comes across it that I have figured out a work around which could be used by others on here.
To achieve the desired "Recent Stories" effect I set the specific page to only display 4 posts per page which, when you have more then that amount of posts triggers the pagination to display.
With that, I used jQuery to hide the pagination so the user could not access it. The final outcome is 4 of the most recent blog posts creating a "Recent Stories" feed on any desired page.
I am still open to other suggestions as to how to implement this feature.
Thanks.