bbp_theme_before_topic_started_in
bbp_theme_before_topic_started_in
Appears in: bbpress.2.5.14, bbpress.2.6.0, bbpress.2.6.1, bbpress.2.6.11, bbpress.2.6.12, bbpress.2.6.2, bbpress.2.6.3, bbpress.2.6.4, bbpress.2.6.5, bbpress.2.6.6, bbpress.2.6.9
Hook Type: action
Displaying hooks found in version: bbpress.2.6.9do_action('bbp_theme_before_topic_started_in') is found 1 times:
- /templates/default/bbpress/loop-single-topic.php line 6864656667686970717273
<?php do_action(
'bbp_theme_after_topic_started_by'
); ?>
<?php
if
( ! bbp_is_single_forum() || ( bbp_get_topic_forum_id() !== bbp_get_forum_id() ) ) : ?>
<?php do_action(
'bbp_theme_before_topic_started_in'
); ?>
<span
class
=
"bbp-topic-started-in"
><?php printf( esc_html__(
'in: %1$s'
,
'bbpress'
),
'<a href="'
. bbp_get_forum_permalink( bbp_get_topic_forum_id() ) .
'">'
. bbp_get_forum_title( bbp_get_topic_forum_id() ) .
'</a>'
); ?></span>
<?php do_action(
'bbp_theme_after_topic_started_in'
); ?>
<?php
endif
; ?>