Info
- 1 post
- 1 voice
- Started 2 years ago by xfatpanda
- This topic is not resolved
Use different templates for different forums
-
- Posted 2 years ago #
I worked with wordpress for a while, but I'm really new to BBpress. I can't find detail documents for BBpress like wordpress does.
If I want to use different templates for different categories in wordpress, I can use the following script.
<?php
$post = $wp_query->post;
if ( in_category('1) ) {
include(TEMPLATEPATH . '/single-1.php');
}
elseif ( in_category('2') ) {
include(TEMPLATEPATH . '/single-2.php');
}
else {
include(TEMPLATEPATH . '/single-3.php');
}
?>But I don't know how to make it in BBpress, could anyone help me out? Thanks a lot!
-
You must log in to post.