BP_Blogs_Theme_Compat

The main theme compat class for BuddyPress Blogs.

Description

This class sets up the necessary theme compatibility actions to safely output group template parts to the_title and the_content areas of a theme.

Source

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

20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
class BP_Blogs_Theme_Compat {
 
    /**
     * Set up theme compatibility for the Blogs component.
     *
     * @since BuddyPress 1.7.0
     */
    public function __construct() {
        add_action( 'bp_setup_theme_compat', array( $this, 'is_blogs' ) );
    }
 
    /**
     * Are we looking at something that needs Blogs theme compatibility?
     *
     * @since BuddyPress 1.7.0
     */
    public function is_blogs() {
 
        // Bail if not looking at a group.
        if ( ! bp_is_blogs_component() )
            return;
 
        // Bail if looking at a users sites.
        if ( bp_is_user() )
            return;
 
        // Blog Directory.
        if ( is_multisite() && ! bp_current_action() ) {
            bp_update_is_directory( true, 'blogs' );
 
            /**
             * Fires if in the blog directory and BuddyPress needs Blog theme compatibility,
             * before the actions and filters are added.
             *
             * @since BuddyPress 1.5.0
             */
            do_action( 'bp_blogs_screen_index' );
 
            add_filter( 'bp_get_buddypress_template',                array( $this, 'directory_template_hierarchy' ) );
            add_action( 'bp_template_include_reset_dummy_post_data', array( $this, 'directory_dummy_post' ) );
            add_filter( 'bp_replace_the_content',                    array( $this, 'directory_content'    ) );
 
        // Create blog.
        } elseif ( is_user_logged_in() && bp_blog_signup_enabled() ) {
            add_filter( 'bp_get_buddypress_template',                array( $this, 'create_template_hierarchy' ) );
            add_action( 'bp_template_include_reset_dummy_post_data', array( $this, 'create_dummy_post' ) );
            add_filter( 'bp_replace_the_content',                    array( $this, 'create_content'    ) );
        }
    }
 
    /** Directory *************************************************************/
 
    /**
     * Add template hierarchy to theme compat for the blog directory page.
     *
     * This is to mirror how WordPress has
     * {@link https://codex.wordpress.org/Template_Hierarchy template hierarchy}.
     *
     * @since BuddyPress 1.8.0
     *
     * @param string $templates The templates from bp_get_theme_compat_templates().
     * @return array $templates Array of custom templates to look for.
     */
    public function directory_template_hierarchy( $templates ) {
 
        /**
         * Filters the custom templates used for theme compat with the blog directory page.
         *
         * @since BuddyPress 1.8.0
         *
         * @param array $value Array of template paths to add to template list to look for.
         */
        $new_templates = apply_filters( 'bp_template_hierarchy_blogs_create', array(
            'blogs/index-directory.php'
        ) );
 
        // Merge new templates with existing stack
        // @see bp_get_theme_compat_templates().
        $templates = array_merge( (array) $new_templates, $templates );
 
        return $templates;
    }
 
    /**
     * Update the global $post with directory data.
     *
     * @since BuddyPress 1.7.0
     */
    public function directory_dummy_post() {
 
        bp_theme_compat_reset_post( array(
            'ID'             => 0,
            'post_title'     => __( 'Sites', 'buddyboss' ),
            'post_author'    => 0,
            'post_date'      => 0,
            'post_content'   => '',
            'post_type'      => 'page',
            'post_status'    => 'publish',
            'is_page'        => true,
            'comment_status' => 'closed'
        ) );
    }
 
    /**
     * Filter the_content with the groups index template part.
     *
     * @since BuddyPress 1.7.0
     */
    public function directory_content() {
        return bp_buffer_template_part( 'blogs/index', null, false );
    }
 
    /** Create ****************************************************************/
 
    /**
     * Add custom template hierarchy to theme compat for the blog create page.
     *
     * This is to mirror how WordPress has
     * {@link https://codex.wordpress.org/Template_Hierarchy template hierarchy}.
     *
     * @since BuddyPress 1.8.0
     *
     * @param string $templates The templates from bp_get_theme_compat_templates().
     * @return array $templates Array of custom templates to look for.
     */
    public function create_template_hierarchy( $templates ) {
 
        /**
         * Filters the custom templates used for theme compat with the blog create page.
         *
         * @since BuddyPress 1.8.0
         *
         * @param array $value Array of template paths to add to template list to look for.
         */
        $new_templates = apply_filters( 'bp_template_hierarchy_blogs_create', array(
            'blogs/index-create.php'
        ) );
 
        // Merge new templates with existing stack
        // @see bp_get_theme_compat_templates().
        $templates = array_merge( (array) $new_templates, $templates );
 
        return $templates;
    }
 
    /**
     * Update the global $post with create screen data.
     *
     * @since BuddyPress 1.7.0
     */
    public function create_dummy_post() {
 
        // Title based on ability to create blogs.
        if ( is_user_logged_in() && bp_blog_signup_enabled() ) {
            $title = __( 'Create a Site', 'buddyboss' );
        } else {
            $title = __( 'Sites', 'buddyboss' );
        }
 
        bp_theme_compat_reset_post( array(
            'ID'             => 0,
            'post_title'     => $title,
            'post_author'    => 0,
            'post_date'      => 0,
            'post_content'   => '',
            'post_type'      => 'page',
            'post_status'    => 'publish',
            'is_page'        => true,
            'comment_status' => 'closed'
        ) );
    }
 
    /**
     * Filter the_content with the create screen template part.
     *
     * @since BuddyPress 1.7.0
     */
    public function create_content() {
        return bp_buffer_template_part( 'blogs/create', null, false );
    }
}

Changelog

Changelog
Version Description
BuddyPress 1.7.0 Introduced.

Methods

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.