BP_Document_Theme_Compat::single_dummy_post()

Update the global $post with the displayed user’s data.

Description

Source

File: bp-document/classes/class-bp-document-theme-compat.php

159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
public function single_dummy_post() {
    bp_theme_compat_reset_post(
        array(
            'ID'             => 0,
            'post_title'     => __( 'Documents', 'buddyboss' ),
            'post_author'    => 0,
            'post_date'      => 0,
            'post_content'   => '',
            'post_type'      => 'page',
            'post_status'    => 'publish',
            'is_page'        => true,
            'comment_status' => 'closed',
        )
    );
}

Changelog

Changelog
Version Description
BuddyBoss 1.4.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.