Skip to:
Content
Pages
Categories
Search
Top
Bottom

bbPress on custom page – how to

  • @epilipovic

    Member

    How can i add a custom page on wordpress theme with bbPress? Is there any function to call?

    example link: http://img34.imageshack.us/img34/9774/bbpress.png

    <?php

    /*

    Template Name: Forum

    */

    /**

    * @package WordPress

    * @subpackage Default_Theme

    */

    get_header(); ?>

    —->>> What to put here to show my bbPress forum?

    <?php get_footer(); ?>

Viewing 4 replies - 1 through 4 (of 4 total)
  • @alexchenco

    Member

    Try this:

    – You first have to start the WordPress Loop

    – Then call the get_template _part() function to get the forum template.

    <?php
    /*
    Template Name: Forum
    */
    @ePilipovic

    /**
    * @package WordPress
    * @subpackage Default_Theme
    */

    get_header(); ?>

    <?php while ( have_posts() ) : the_post(); ?>

    <div id="forum-front" class="bbp-forum-front">
    <div class="entry-content">

    <?php the_content(); ?>

    <?php get_template_part( 'loop', 'bbp_forums' ); ?>

    <?php get_template_part( 'form', 'bbp_topic' ); ?>

    </div>
    </div><!-- #forum-front -->

    <?php endwhile; ?>

    <?php get_footer(); ?>

    @alexchenco

    Member

    Try this:

    – You first have to start the WordPress Loop

    – Then call the get_template _part() function to get the forum template.

    <?php
    /*
    Template Name: Forum
    */
    @ePilipovic

    /**
    * @package WordPress
    * @subpackage Default_Theme
    */

    get_header(); ?>

    <?php while ( have_posts() ) : the_post(); ?>

    <div id="forum-front" class="bbp-forum-front">
    <div class="entry-content">

    <?php the_content(); ?>

    <?php get_template_part( 'loop', 'bbp_forums' ); ?>

    <?php get_template_part( 'form', 'bbp_topic' ); ?>

    </div>
    </div><!-- #forum-front -->

    <?php endwhile; ?>

    <?php get_footer(); ?>

    @epilipovic

    Member

    Hello,

    I tried this but the forum didn’t show up ony header and footer.

    thanks

    @epilipovic

    Member

    Hello,

    I tried this but the forum didn’t show up ony header and footer.

    thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.
Skip to toolbar