Versions Compared

Key

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

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. 

...

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