Nistor Alexandru
Nistor Alexandru

Reputation: 5393

Linking beetween pages in wordpress

Hi I am trying to link to some custom templates I have created and I don't seem to know how to do it the right way.For example:

I have created a custom contact page and named it contact.php.From the front-page I want to link to it.Now this is what I did but I don't think this is the best way:

<a href="<?php bloginfo('url') ?>/contact">

Now this works but only if the permalinks are set in the settings page to postname.If for example the page is set to default the links shows the 404.php.

How can I set the links the right way?

I noticed that when creating custom post types there is a way to rewrite the permalinks and define a slug for the new page.Is there a similar way to rewrite permalinks for custom templates?

Upvotes: 0

Views: 68

Answers (1)

Maidul
Maidul

Reputation: 418

You have to use get_page_link() function instate Here you can see details

http://codex.wordpress.org/Function_Reference/get_page_link

Thanks

Upvotes: 2

Related Questions