Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 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
languagephp
linenumberstrue
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');