We will see here how to create a second wiki page for a certain category (or several categories if needed) :
...
Code Block |
---|
<?php Woffice_Frontend::frontend_render('wiki',$process_result, 10); ?> |
You can get the id of the wiki categories here:
Repeat this for each new wiki template you have created.
After, open the file single taxonomy-wiki-category.php, and search for:
$wiki_display = new Woffice_Wiki_Display_Manager(0);
And replace with:
Code Block |
---|
$wiki_display = new Woffice_Wiki_Display_Manager(YOUR_CATEGORY_ID); |
...