Adding wordpress posts to bbpress profile?
-
When i was using author.php for my wordpress profile i used the following code to show the latest blog posts i had made
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
- ” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”>
<?php the_title(); ?>
Posted @ <?php the_time(‘d M Y’); ?><?php endwhile; else: ?>
<?php _e(‘Well well, it looks as if this user has no posts. Nevermind!’); ?>
<?php endif; ?>
This doesn’t work in my bbpress profile, even though i have the 2 integrated. Any ideas of how i could get it to work?
- ” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”>
- You must be logged in to reply to this topic.