bp_blogs_screen_create_a_blog()

Load the “Create a Blog” screen.

Description

Source

File: bp-blogs/screens/create.php

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
function bp_blogs_screen_create_a_blog() {
 
    if ( !is_multisite() ||  !bp_is_blogs_component() || !bp_is_current_action( 'create' ) )
        return false;
 
    if ( !is_user_logged_in() || !bp_blog_signup_enabled() )
        return false;
 
    /**
     * Fires right before the loading of the Create A Blog screen template file.
     *
     * @since BuddyPress 1.0.0
     */
    do_action( 'bp_blogs_screen_create_a_blog' );
 
    bp_core_load_template( apply_filters( 'bp_blogs_template_create_a_blog', 'blogs/create' ) );
}

Changelog

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