i have buddypress installed, everything is working fine, however, I noticed that when a member creates a blog the post body doesn’t display. every other piece displays fine – the title, author, etc.
on a weird note, I did see the post body for one member’s blogs, but when I went to check anothers, I saw nothing….then when I went back to the one that did work, it wasn’t anymore.
this is the code used to display the posts:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>" style="margin-bottom:20px; border-bottom:1px dotted #666; padding-bottom:12px;">
<h2 style="margin-top:0;"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<small>Posted on: <?php the_time('F jS, Y') ?></small>
<div class="entry">
<?php the_content(__('(more...)')); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<div style="margin-top:12px; padding-bottom:4px;">
<div style="float:left;"><small><?php edit_post_link('Edit this entry.', '<div>', '</div>'); ?></small></div>
<div style="float:right;"><small><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></small></div>
</div>
</div>
<?php endwhile; endif; ?>
anyone have any ideas why this could be happening?? please help!!