Display correct counter
-
Hi everybody,
I made a custom display of topics for a specific forum. Like this:
<?php $args = array( 'post_type' => 'topic', 'posts_per_page' => 10, 'post_parent' => '410' ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); ?> <div class="bbp-forum-table__content--grid "> <div class="topic-title"><a href="<?php bbp_topic_permalink(); ?>"><?php the_title(); ?></a></div> <div class="replies-counter"><?php bbp_topic_voice_count(); ?></div> <div class="posts-counter"><?php bbp_topic_post_count(); ?></div> <div class="user-freshness"></div> </div> <?php endwhile;?>
But it’s seems that counter isn’t correct… Did I need to add something to count correctly the voice_count and post_count ?
I already try the repair tools 🙁
Thanks a lot 😉
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.