• Dear All

    When we write a post, then the post title automatically be a link. But when we create/write a page, that page title is NOT automatically be a link.

    I’ve writed/created two pages, called “Contact” and “Webmail” and that each title is automatically appear on the top menu !..

    So, wanna know how to make “Contact” and “Webmail” be a link really like the post title.

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • You have to go into the index.php theme file and copy and paste the h2 code with link over to page.php.

    Thread Starter wpers

    (@wpers)

    Thanks for your reply. But can you explain to me more detail, sorry beacuse i’m newbie. I used GlossyBlue theme.

    Thread Starter wpers

    (@wpers)

    when i used code below, the page title is still can’t be a link ??

    <h2> <a href="https://myblog.com/?page_id=115"></a></h2>

    when using code below the page title still can’t be a link and break my theme/page ??

    <h2><a href="https://myblog.com/?page_id=115">"><?php the_title(); ?></a></h2>

    So please give me help

    I don’t know what the GlossyBlue theme is, but all themes are roughly setup the same way:

    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>

    That should do it.

    Thread Starter wpers

    (@wpers)

    yup, you absolutely right ! but every time i tried, above code break the page that i’ve created ??

    what i want is just convert the page title (on the top menu) be link really like the post title. but onece again, above code is can’t do what i want !

    so, perhaps there’s another code? i used wp 2.2.2

    Hey WPers, try this:

    Go to Options -> Permalinks -> Select Numeric -> Update

    Your links should look something like: https://yourdomain.com/index.php/page_title

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Page Name as Link’ is closed to new replies.