All elements display in a 'normal' loop except those for the author's avatar?
-
I started a loop with this loop opening:
<?php // Display the top topics of current forum
$args = array(
'post_type' => 'topic',
'posts_per_page' => '3',
'post_parent' => $post->ID,
'gdsr_sort' => 'thumbs',
'gdsr_ftvmin' => '1',
'gdsr_order' => 'desc',
'order' => 'DESC'
);
?>
<?php endif; ?>
<div class="entry-list-all">
<?php do_action( 'bbp_template_before_topics_loop' ); ?>
<?php query_posts( $args ); ?>
<?php while ( have_posts() ) : the_post(); ?>…
All bbpress elements appear except those that display the author’s picture:
<?php printf( __( 'Started by: %1$s', 'bbpress' ), bbp_get_topic_author_link( array( 'size' => '14' ) ) ); ?>
and
<?php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'size' => 14 ) ); ?>
They used to display in bbpress beta.
Is there any way to display them again?
- You must be logged in to reply to this topic.