Viewing 4 replies - 1 through 4 (of 4 total)
  • Simply edit your theme. Look for header.php

    Thread Starter sitelit

    (@sitelit)

    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!

    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.

    Thread Starter sitelit

    (@sitelit)

    that’s really helpful, thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘how to link a forum with my blog?’ is closed to new replies.