wp-forums
-
I writed wordpress-based forum, with wp account-basing, bbcodes, moderators, user_levels forums views and other.
You can download is here.
To install, open you index.php and type at <? string:
include(‘./wp-forum/index.php’);
//===
after <div id=”content”> type:
<?php
if(isset($_GET[‘forum’])) {
forum_index();
}
elseif(isset($_GET[‘sql’])) {
forum_sql();
}
else {
//===
after <?php endif; ?> type:
<?php
}
?>
//===
And where you like at menu, type:-
<? forum_top10() ?>
//=======
It’s all π Anjoy π
Some things you should do with SQL-query form (index.php?sql)
Installatio from wp-forum/include/install-sql.php
queries:
for forum adding
INSERT INTO forum(id, title, text, level) VALUES(NULL, ‘Forum name’, ‘Forum discription’, ‘user_level to access forum’)
And so on…. I’ll make all forms & other next week, I think
Example of useing – at my site π
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
The topic ‘wp-forums’ is closed to new replies.