bbp_get_forum_last_active_time( int $forum_id )

Return the forums last update date/time (aka freshness)

Description

Parameters

$forum_id

(Optional) Forum id

Return

(string) Forum last update date/time (freshness)

Source

File: bp-forums/forums/template.php

571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
function bbp_get_forum_last_active_time( $forum_id = 0 ) {
 
    // Verify forum and get last active meta
    $forum_id    = bbp_get_forum_id( $forum_id );
    $last_active = get_post_meta( $forum_id, '_bbp_last_active_time', true );
 
    if ( empty( $last_active ) ) {
        $reply_id = bbp_get_forum_last_reply_id( $forum_id );
        if ( !empty( $reply_id ) ) {
            $last_active = get_post_field( 'post_date', $reply_id );
        } else {
            $topic_id = bbp_get_forum_last_topic_id( $forum_id );
            if ( !empty( $topic_id ) ) {
                $last_active = bbp_get_topic_last_active_time( $topic_id );
            }
        }
    }
 
    $active_time = !empty( $last_active ) ? bbp_get_time_since( bbp_convert_date( $last_active ) ) : '';
 
    return apply_filters( 'bbp_get_forum_last_active', $active_time, $forum_id );
}

Changelog

Changelog
Version Description
bbPress (r2464) Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.