- Timestamp:
- 04/17/2015 03:19:17 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/blogs/create.php
r9604 r9761 1 <?php do_action( 'bp_before_create_blog_content_template' ); ?>1 <?php 2 2 3 <?php do_action( 'template_notices' ); ?> 3 /** 4 * Fires at the top of the blog creation template file. 5 * 6 * @since BuddyPress (1.6.0) 7 */ 8 do_action( 'bp_before_create_blog_content_template' ); ?> 4 9 5 <?php do_action( 'bp_before_create_blog_content' ); ?> 10 <?php 11 12 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 13 do_action( 'template_notices' ); ?> 14 15 <?php 16 17 /** 18 * Fires before the display of the blog creation form. 19 * 20 * @since BuddyPress (1.1.0) 21 */ 22 do_action( 'bp_before_create_blog_content' ); ?> 6 23 7 24 <?php if ( bp_blog_signup_enabled() ) : ?> … … 17 34 <?php endif; ?> 18 35 19 <?php do_action( 'bp_after_create_blog_content' ); ?>36 <?php 20 37 21 <?php do_action( 'bp_after_create_blog_content_template' ); ?> 38 /** 39 * Fires after the display of the blog creation form. 40 * 41 * @since BuddyPress (1.1.0) 42 */ 43 do_action( 'bp_after_create_blog_content' ); ?> 44 45 <?php 46 47 /** 48 * Fires at the bottom of the blog creation template file. 49 * 50 * @since BuddyPress (1.6.0) 51 */ 52 do_action( 'bp_after_create_blog_content_template' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.