WP: How to add a PAGE?

Discussion in 'Blogging' started by alexs464, Jun 23, 2008.

  1. #1
    Ok, I am starting this new site using a WP template. I can create pages (HOME and ABOUT are there by default). I just created a new page called FORUM and I want the button to link elsewhere, is it possible to do?

    Let's say I have a site www.xyz.com, I create a page called Forum and I want users to be taken to www.xyz.com/forum when they click on it. How do I do it?

    Thanks
     
    alexs464, Jun 23, 2008 IP
  2. Pixelrage

    Pixelrage Peon

    Messages:
    5,083
    Likes Received:
    128
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I think you'd have to insert that link manually. Also, it would have to point to your vBulletin/phpBB/whatever home page. It will be tricky to do if you have one of those auto-updating menus. I'm assuming that your menu is wrapped in those <ul> tags - try putting in your forum link before the ending </ul> and see if that works!
     
    Pixelrage, Jun 23, 2008 IP
  3. alexs464

    alexs464 Well-Known Member

    Messages:
    1,357
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    125
    #3
    markn - thanks for the reply but you lost me ;)

    Here is my site: ihearteuro.com, you can see the FORUM button there, I want to link it to http://www.ihearteuro.com/forum/index.php ... my phpBB forum... I would even I am not sure which part of the template I should modify ;(
     
    alexs464, Jun 23, 2008 IP
  4. mizaks

    mizaks Well-Known Member

    Messages:
    2,066
    Likes Received:
    126
    Best Answers:
    0
    Trophy Points:
    135
    #4
    You'll have to edit your header.php.

    Look for a line like:

    
    <?php wp_list_pages('title_li='); ?>
    
    Code (markup):
    In its place you'll have to maually add your links.

    
    <li><a href="http://ihearteuro.com/">Home</a></li>
    <li><a href="http://ihearteuro.com/?page_id=2">About</a></li>
    <li><a href="http://ihearteuro.com/forum_link_here">Forums</a></li>
    
    Code (markup):
     
    mizaks, Jun 23, 2008 IP
    alexs464 likes this.
  5. alexs464

    alexs464 Well-Known Member

    Messages:
    1,357
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    125
    #5
    Wow, thanks - exactly what I needed!
    +repped :cool:
     
    alexs464, Jun 23, 2008 IP