Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Layout problem/question with Buddypress Theme Pack


Craig
Participant

@catholicservant

If anyone is willing to help…here’s my page.php…again I’m not sure what I need to re-arrange in the BP template files…if someone described what needs changing in one of them, I can figure out the rest…THX

<?php get_header(); ?>

<div class="post">

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

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

<h1><?php the_title(); ?></h1>

<small> <?php edit_post_link( __('Edit'), ' | ', ''); ?></small>

<?php the_content('<p>Read the rest of this entry »</p>'); ?>

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

</div>

<?php endwhile; else: ?>

<p>Sorry, no posts matched your criteria.</p>

<?php endif; ?>

</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>

Skip to toolbar