To use the Wiki articles feature, you need to make sure that the Woffice Wiki extension is enabled from the Unyson (extensions) page. It is done by default.
Then, the first thing you want to do is to create a Wiki List page that will list your articles. You just need to create a new page and select the template as "Wiki":
...
- Ability to display a like count
- Exclude specific categories
- Enabling smart sub-categories
- Wiki sorting by likes
By default the maximum number of wiki articles listed on the wiki page is 10. It is possible to change that to a custom number using the custom code below in your woffice-child/functions.php file:
Code Block | ||||
---|---|---|---|---|
| ||||
function woffice_custom_wiki_article_count_limit($limit) {
return 15; // your can place any number here
}
add_filter('woffice_wiki_article_count_limit', 'woffice_custom_wiki_article_count_limit'); |