golden hour
/var/www/html/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/blogs
⬆️ Go Up
Upload
File/Folder
Size
Actions
blogs-loop.php
2.39 KB
Del
OK
create.php
1.15 KB
Del
OK
index.php
4.17 KB
Del
OK
Edit: create.php
<?php /** * BuddyPress - Blogs Create * * @package BuddyPress * @subpackage bp-legacy * @version 3.0.0 */ /** * Fires at the top of the blog creation template file. * * @since 1.6.0 */ do_action( 'bp_before_create_blog_content_template' ); ?> <div id="buddypress"> <div id="template-notices" role="alert" aria-atomic="true"> <?php /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ do_action( 'template_notices' ); ?> </div> <?php /** * Fires before the display of the blog creation form. * * @since 1.1.0 */ do_action( 'bp_before_create_blog_content' ); ?> <?php if ( bp_blog_signup_enabled() ) : ?> <?php bp_show_blog_signup_form(); ?> <?php else: ?> <div id="message" class="info"> <p><?php _e( 'Site registration is currently disabled', 'buddypress' ); ?></p> </div> <?php endif; ?> <?php /** * Fires after the display of the blog creation form. * * @since 1.1.0 */ do_action( 'bp_after_create_blog_content' ); ?> </div> <?php /** * Fires at the bottom of the blog creation template file. * * @since 1.6.0 */ do_action( 'bp_after_create_blog_content_template' );
Save