The {faq_latest} TAG fetches the latest FAQ entries from all categories.
The name of the template variable the result array will be assigned to.
Default order is DESC, Possible values are ASC and DESC.
The first value to fetch. Default is 0.
The last value to fetch. Default is 10.
This fetches the last 10 FAQ entries.
<html>
<head>
<title>Latest 10 FAQs</title>
</head>
<body>
{faq_latest assign="entries"}
{foreach from=$entries item="faq"}
<div class="faqEntry">
<b>Question</b>: {$faq.question}
<br />
<b>Answer</b>: {$faq.answer}
</div>
{/foreach}
</body>
</html>