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!
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!
Simply edit your theme. Look for header.php
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.
forumforum.php<?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.
that's really helpful, thanks!
This topic has been closed to new replies.