Hauptseite

Aus Wiki_2020

Inhalt


Links


Hilfe zur Benutzung und Konfiguration der Wiki-Software findest du im Benutzerhandbuch.

How do I add extra namespaces?

To add a namespace, modify your LocalSettings.php file, and add namespaces via $wgExtraNamespaces. You can add the following code to add a "Portal" namespace, and its corresponding discussion namespace:

<source lang="php"> define( "NS_PORTAL", 100 ); define( "NS_PORTAL_TALK", 101 ); $wgExtraNamespaces[NS_PORTAL] = "Portal"; $wgExtraNamespaces[NS_PORTAL_TALK] = "Portal_talk"; </source>

Vorlage:Note