Forums

how to link a forum with my blog? (5 posts)

  1. sitelit
    Member
    Posted 3 years ago #

    i built a forum, located here: http://www.mysite.com/forum, i want to display the forum button along side with home and about pages buttons, and have it linked to the above url, how do i do this? thanks!

  2. UserName9
    Member
    Posted 3 years ago #

    Simply edit your theme. Look for header.php

  3. sitelit
    Member
    Posted 3 years ago #

    thanks, but i couldn't find any info about the forum in header.php, i'm a newbie, can u pls explain in some detail? thanks!

  4. NC@WP
    Member
    Posted 3 years ago #

    There are several ways to get it done. Here's one that is probably going to be the easiest for you.

    1. Create an empty page called Forum with the slug forum
    2. Create a file in your theme directory called forum.php
    3. In that file, put the following:
      <?php 
      
      header('Location: http://yoursite.com/forum/');
      die();
      
      ?>

      Be sure that the file starts with <?php and there is no whitespace in front of the <.

    This will create a link to the (empty) forum page, which would redirect to the forum.

  5. sitelit
    Member
    Posted 3 years ago #

    that's really helpful, thanks!

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags