Hi Joshua,
There are 3 possible ways to display faq’s in your theme
Display All FAQs on a single page
To display all FAQs on a page. Add Following Shortcode to your page.
[hs-faq limit="-1"]
Where limit specifies the number of posts to display. -1 will display all the posts.
So if you want to display only 5 FAQs. Then use following shortcode.
[hs-faq limit="5"]
To display FAQs of a specific category.
To display FAQs of a specific category on a page. Add Following Shortcode to your page.
[hs-faq-cat id="14"]
Where 14 is the category ID.
Use shortcode in a PHP file, outside the post editor.
You can also use the shortcode outside the post editor on a custom template.
echo do_shortcode('[hs-faq limit="-1"]');