This short code will show the current topic info of the bbpress forum plugin on the sidebar. You can place this code on your theme functions.php file. [php] /** * bbpress topic info short code */ function bbpress_topic_info_func( $atts ){ global $wp_query; $post = $wp_query->get_queried_object(); if($post->post_type == "topic"){ ob_start(); ?> <ul class="topic-info"> <li class="topic-forum"> […]