Hauptseite: Unterschied zwischen den Versionen

Aus Wiki_2020
Wezi (Diskussion | Beiträge)
Keine Bearbeitungszusammenfassung
Wezi (Diskussion | Beiträge)
Keine Bearbeitungszusammenfassung
Zeile 14: Zeile 14:


Hilfe zur Benutzung und Konfiguration der Wiki-Software findest du im [//meta.wikimedia.org/wiki/Help:Contents Benutzerhandbuch].
Hilfe zur Benutzung und Konfiguration der Wiki-Software findest du im [//meta.wikimedia.org/wiki/Help:Contents Benutzerhandbuch].
===How do I add extra namespaces?===
To add a [[Manual:Namespace|namespace]], modify your '''[[Manual:LocalSettings.php|LocalSettings.php]]''' file, and add namespaces via '''[[Manual:$wgExtraNamespaces|$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>
{{note|Be sure to add underscores instead of spaces, such as in <tt>Portal_talk</tt>. Otherwise, the namespace will not be declared properly!|reminder}}

Version vom 31. Oktober 2013, 19:43 Uhr

Inhalt


Links


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