bbp_topic_favorites_metabox( $post )
See who marked a topic as a favorite
Description Description
Source Source
File: includes/admin/metaboxes.php
function bbp_topic_favorites_metabox( $post ) {
// Get user IDs
$user_ids = bbp_get_topic_favoriters( $post->ID );
// Output
?><p><?php
// Relationships
$args = array(
'include' => $user_ids
);
// Users were found
if ( ! empty( $user_ids ) && bbp_has_users( $args ) ) :
bbp_metabox_user_links();
// No users
else :
esc_html_e( 'No users have favorited this topic.', 'bbpress' );
endif;
?></p><?php
do_action( 'bbp_favorites_metabox', $post );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.6.0 | Introduced. |