Forum Replies Created
- 
		
			
In reply to: Is there a way to display users with highest topicsI got an error why using your shortcode In reply to: I need help with bbPress widget topic listPlease assist if there is way to it How can I get favorite count 
 And subscription notification countThanks I’m trying to display topic in list form Like this website nairaland.com If you check all the forum categories you will notice all topics are in list form Is there a way to achieve this on bbpress Thanks for the help add_shortcode (‘kiki-stats’ , ‘kiki_show_stats’ ) ; function kiki_show_stats() { 
 $user_count = count_users();
 $users = $user_count[‘total_users’] ;
 $topic_count = wp_count_posts(‘topic’);
 $topics = $topic_count->publish;
 $reply_count = wp_count_posts(‘reply’);
 $replies = $reply_count->publish ;
 $text = ‘Our ‘.$users.’ users have created ‘.$topics. ‘ topics with ‘.$replies.’ replies.’ ;
 echo $text ;
 }This is the link to my site bbnaijaforum.com I want to display the name after the good morning greeting in the header Good morning, Praise John