...
- 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'); |