315 | | <li class="topic-forum">In: <a href="<?php bbp_forum_permalink( bbp_get_topic_forum_id() ); ?>"><?php bbp_topic_forum_title(); ?></a></li> |
316 | | <?php if ( !empty( $reply_count ) ) : ?><li class="reply-count"><?php echo $reply_count; ?></li><?php endif; ?> |
317 | | <?php if ( !empty( $voice_count ) ) : ?><li class="voice-count"><?php echo $voice_count; ?></li><?php endif; ?> |
| 315 | <li class="topic-forum"><?php |
| 316 | /* translators: %s: forum title */ |
| 317 | printf( __( 'In: %s', 'wporg-forums' ), |
| 318 | sprintf( '<a href="%s">%s</a>', |
| 319 | esc_url( bbp_get_forum_permalink( bbp_get_topic_forum_id() ) ), |
| 320 | bbp_get_topic_forum_title() |
| 321 | ) |
| 322 | ); |
| 323 | ?></li> |
| 324 | <?php if ( !empty( $reply_count ) ) : ?> |
| 325 | <li class="reply-count"><?php echo $reply_count; ?></li> |
| 326 | <?php endif; ?> |
| 327 | <?php if ( !empty( $voice_count ) ) : ?> |
| 328 | <li class="voice-count"><?php echo $voice_count; ?></li> |
| 329 | <?php endif; ?> |
319 | | <li class="topic-freshness-author"><?php printf( __( 'Last reply from: %s', 'wporg-forums' ), bbp_get_author_link( array( 'type' => 'name', 'post_id' => $last_reply, 'size' => '15' ) ) ); ?></li> |
| 331 | <li class="topic-freshness-author"><?php |
| 332 | /* translators: %s: reply author link */ |
| 333 | printf( __( 'Last reply from: %s', 'wporg-forums' ), |
| 334 | bbp_get_author_link( array( 'type' => 'name', 'post_id' => $last_reply, 'size' => '15' ) ) |
| 335 | ); |
| 336 | ?></li> |
368 | | <?php if ( bbp_get_forum_parent_id() ) : ?><li class="topic-parent">In: <a href="<?php bbp_forum_permalink( bbp_get_forum_parent_id() ); ?>"><?php bbp_forum_title( bbp_get_forum_parent_id() ); ?></a></li><?php endif; ?> |
369 | | <?php if ( !empty( $topic_count ) ) : ?><li class="topic-count"><?php echo $topic_text; ?></li><?php endif; ?> |
370 | | <?php if ( !empty( $reply_count ) ) : ?><li class="reply-count"><?php echo $reply_text; ?></li><?php endif; ?> |
| 390 | <?php if ( bbp_get_forum_parent_id() ) : ?> |
| 391 | <li class="topic-parent"><?php |
| 392 | /* translators: %s: forum title */ |
| 393 | printf( __( 'In: %s', 'wporg-forums' ), |
| 394 | sprintf( '<a href="%s">%s</a>', |
| 395 | esc_url( bbp_get_forum_permalink( bbp_get_forum_parent_id() ) ), |
| 396 | bbp_get_forum_title( bbp_get_forum_parent_id() ) |
| 397 | ) |
| 398 | ); |
| 399 | ?></li> |
| 400 | <?php endif; ?> |
| 401 | <?php if ( !empty( $topic_count ) ) : ?> |
| 402 | <li class="topic-count"><?php echo $topic_text; ?></li> |
| 403 | <?php endif; ?> |
| 404 | <?php if ( !empty( $reply_count ) ) : ?> |
| 405 | <li class="reply-count"><?php echo $reply_text; ?></li> |
| 406 | <?php endif; ?> |