Hello,
I want to create several FAQ pages, one per category.
Is it possible to call the category I want as for example nice_faq(“Category1”);?
Or do you have a way that does not require modifying the page in php?
Thanks for your help
Hilal
Hello Hilal,
Thank you for reaching out to us. I hope you’re doing well.
You could use the $args
parameter for that function. You can check the function on flabtase/includes/functions.php
What you would need to do is doing something like this:
// Replace ID with the number of the category you'd like to use.
nice_faq( [ 'category' => ID ] );
I hope this helps.
Best,
Juan.