Anonymous

TOUD:Using the TOUD Wiki: Difference between revisions

From Time of Unparalleled Darkness Wiki
(Intro blurb)
 
(Add SEO title usage)
Line 1: Line 1:
Hi!  Thanks for wanting to participate in the Time of Unparalleled Darkness wiki!  This page provides documentation on how to use the wiki in terms of creating and editing pages, and specific instructions in how to use the special extensions our wiki has.
Hi!  Thanks for wanting to participate in the Time of Unparalleled Darkness wiki!  This page provides documentation on how to use the wiki in terms of creating and editing pages, and specific instructions in how to use the special extensions our wiki has.
== Changing the title, description, and keywords for a page ==
When you enter the following in a wiki page:
<syntaxhighlight lang=html>
<seo title="word1,word2" metakeywords="word3,word4" metadescription="word5,word6" google-site-verification="123456789-abfd123456" />
</syntaxhighlight>
...or the shorter...
<syntaxhighlight lang=html>
<seo title="word1,word2" metak="word3,word4" metad="word5,word6" google-site-verification="123456789-abfd123456" />
</syntaxhighlight>
...these words are '''added''' to the HTML title and meta headers. This makes SEO (search engine optimization) with MediaWiki easier.
For example, the above would become:
<syntaxhighlight lang=html>
<title>word1,word2 - Wiki Name</title>        (the string "word1,word2" replaces page title)
<meta name="keywords" content="word3,word4" />
<meta name="description" content="word5,word6" />
<meta google-site-verification="123456789-abfd123456" />
</syntaxhighlight>

Revision as of 14:31, 13 November 2025

Hi! Thanks for wanting to participate in the Time of Unparalleled Darkness wiki! This page provides documentation on how to use the wiki in terms of creating and editing pages, and specific instructions in how to use the special extensions our wiki has.

Changing the title, description, and keywords for a page

When you enter the following in a wiki page:

<seo title="word1,word2" metakeywords="word3,word4" metadescription="word5,word6" google-site-verification="123456789-abfd123456" />

...or the shorter...

<seo title="word1,word2" metak="word3,word4" metad="word5,word6" google-site-verification="123456789-abfd123456" />

...these words are added to the HTML title and meta headers. This makes SEO (search engine optimization) with MediaWiki easier.

For example, the above would become:

<title>word1,word2 - Wiki Name</title>         (the string "word1,word2" replaces page title)
<meta name="keywords" content="word3,word4" />
<meta name="description" content="word5,word6" />
<meta google-site-verification="123456789-abfd123456" />