bbp_get_reply_id( $reply_id )

Return the id of the reply in a replies loop

Description

Parameters

$reply_id

(Optional) Used to check emptiness

Return

(int) The reply id

Source

File: bp-forums/replies/template.php

356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
function bbp_get_reply_id( $reply_id = 0 ) {
    global $wp_query;
 
    $bbp = bbpress();
 
    // Easy empty checking
    if ( !empty( $reply_id ) && is_numeric( $reply_id ) ) {
        $bbp_reply_id = $reply_id;
 
    // Currently inside a replies loop
    } elseif ( !empty( $bbp->reply_query->in_the_loop ) && isset( $bbp->reply_query->post->ID ) ) {
        $bbp_reply_id = $bbp->reply_query->post->ID;
 
    // Currently inside a search loop
    } elseif ( !empty( $bbp->search_query->in_the_loop ) && isset( $bbp->search_query->post->ID ) && bbp_is_reply( $bbp->search_query->post->ID ) ) {
        $bbp_reply_id = $bbp->search_query->post->ID;
 
    // Currently viewing a forum
    } elseif ( ( bbp_is_single_reply() || bbp_is_reply_edit() ) && !empty( $bbp->current_reply_id ) ) {
        $bbp_reply_id = $bbp->current_reply_id;
 
    // Currently viewing a reply
    } elseif ( ( bbp_is_single_reply() || bbp_is_reply_edit() ) && isset( $wp_query->post->ID ) ) {
        $bbp_reply_id = $wp_query->post->ID;
 
    // Fallback
    } else {
        $bbp_reply_id = 0;
    }
 
    return (int) apply_filters( 'bbp_get_reply_id', $bbp_reply_id, $reply_id );
}

Changelog

Changelog
Version Description
bbPress (r2553) 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.