Hi, how can I get URL for an Article in MediaWiki given the title?
I want to create links to certain pages in the skin template programmatically using PHP right now I am doing this:
<a href="<?php $wgScriptPath ?>/index.php/Page_title">Page title</a>
Which is a bit too wordy, I'd like something
<?php page_link_by_title("Page_title") ?>
Thanks!