Skip to:
Content
Pages
Categories
Search
Top
Bottom

BP Compatibilty – problem with step three


  • maxell6667
    Member

    @maxell6667

    Hey guys,

    i just found out, that bp is now working with single wordpress single instalation, so i decided to try it. There was no problem with general instalation, but now i’m trying to make my wordpress theme bp compatible and i have an issue.

    I don’t really understand step three, because i’m css and html rookie. Here is my page.php. Can someone please, give me an example how to do it?

    <?php global $options; ?>

    <?php get_header(); ?>

    <div id="postcolumn">

    <?php if (have_posts()) : ?>

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

    <!-- post zone -->

    <div class="pagezone">

    <div id="post-<?php the_ID(); ?>">

    <div class="area">

    <h1><?php the_title(); ?><span class="edit"><?php edit_post_link(EDIT); ?></span></h1>

    <div class="entry">

    <?php the_content(); ?><div class="clear"></div>

    <?php wp_link_pages(array('before' => '<p>'.PAGES.': ', 'after' => '</p>', 'next_or_number' => 'number')); ?>

    </div>

    </div>

    </div>

    </div>

    <?php endwhile; ?>

    <?php else : ?>

    <?php endif; ?>

    <!-- right zone -->

    <div class="clear"></div>

    </div>

    <?php get_footer(); ?>

    Here is the site, when i’m testing BP: http://www.tinyurl.pl/?BvsVyqmO

  • The topic ‘BP Compatibilty – problem with step three’ is closed to new replies.
Skip to toolbar