bbp_is_replies_created()

Check if current page shows the topics created by a Forums user (profile page)

Description

Return

(bool) True if it's the topics created page, false if not

Source

File: bp-forums/common/template.php

636
637
638
639
640
641
642
643
644
645
646
647
function bbp_is_replies_created() {
    global $wp_query;
 
    // Assume false
    $retval = false;
 
    // Check query
    if ( !empty( $wp_query->bbp_is_single_user_replies ) && ( true === $wp_query->bbp_is_single_user_replies ) )
        $retval = true;
 
    return (bool) apply_filters( 'bbp_is_replies_created', $retval );
}

Changelog

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