====== How to show the latest posts? ====== So you would like to add your latest blog posts to your website, this is very easy however you will need to customise this to match your theme. Simply add the following line to your integration: `$latest_posts = $this->Blogs->getLatestPost();` So the integration should look like this: Html->ifSet($logged_in)) { $client_group = $this->Menus->grabClientGroup($contact->client_id); $menu_items = $this->Menus->getAllMenusAndSubmenus($client_group); }else{ $menu_items = $this->Menus->getAllMenusAndSubmenus('0'); } // Footer Links $footer_links = $this->Footer->getAllFooterLinks(); $footer_categories = $this->Footer->getAllFooterCategories(); // Multi-languages $lang = $this->Pages->getCurrentLang(); $default_lang = $this->Pages->getAllLang()[0]->uri; // Latest blog posts $latest_posts = $this->Blogs->getLatestPost(); ?> Then you need to use the following: