bp_replace_the_content( string $content = '' )

Conditionally replace ‘the_content’.

Description

Replaces the_content() if the post_type being displayed is one that would normally be handled by BuddyPress, but proper single page templates do not exist in the currently active theme.

Parameters

$content

(Optional) Original post content.

Default value: ''

Return

(string) $content Post content, potentially modified.

Source

File: bp-core/bp-core-theme-compatibility.php

665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
function bp_replace_the_content( $content = '' ) {
 
    // Bail if not the main loop where theme compat is happening.
    if ( ! bp_do_theme_compat() ) {
        return $content;
    }
 
    // Set theme compat to false early, to avoid recursion from nested calls to
    // the_content() that execute before theme compat has unhooked itself.
    bp_set_theme_compat_active( false );
 
    /**
     * Filters the content to replace in the post.
     *
     * @since BuddyPress 1.7.0
     *
     * @param string $content Original post content.
     */
    $new_content = apply_filters( 'bp_replace_the_content', $content );
 
    // Juggle the content around and try to prevent unsightly comments.
    if ( ! empty( $new_content ) && ( $new_content !== $content ) ) {
 
        // Set the content to be the new content.
        $content = $new_content;
 
        // Clean up after ourselves.
        unset( $new_content );
 
        // Reset the $post global.
        wp_reset_postdata();
    }
 
    // Return possibly hi-jacked content.
    return $content;
}

Changelog

Changelog
Version Description
BuddyPress 1.7.0 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.