MediaWiki:Mainpage

From Epic Path
Revision as of 12:29, 30 March 2016 by Reese (talk | contribs)

Redirect page
Jump to navigation Jump to search

Redirect to:

/* Change the main page url used in things like the logo to a url of another page on the wiki */ $wgHooks['SkinTemplateOutputPageBeforeExec'][] = 'lfChangeMainPageURL'; function lfChangeMainPageURL( $sk, &$tpl ) { $tpl->data['nav_urls']['mainpage']['href'] = Title::newFromText('Epic Path')->getLocalURL(); // Point the main page url to a wiki page's url return true; }