2014-05-02, 19:59:00
GS goes about subpages in a specific fasion. You can have pages nested multiple levels deep, but the URLs generated in menus will never show more than two sublevels. Even then if you go ahead and completely omit everything from the domain to the last slash, the page will still load : )
That's because GS takes the last part (after the slash) of the URL as a page ID. However if you want to have "politically correct" URLs, then do this:
That's because GS takes the last part (after the slash) of the URL as a page ID. However if you want to have "politically correct" URLs, then do this:
- install the I18N plugin.
- Change the %parent% to %parents% in your permalink structure.
- At the very least replace the get_navigation() function in your theme file with i18n's counterpart get_i18n_navigation() function.