Changeset 9761
- Timestamp:
- 04/17/2015 03:19:17 AM (8 years ago)
- Location:
- trunk/src/bp-templates/bp-legacy/buddypress/blogs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/blogs/blogs-loop.php
r9604 r9761 12 12 ?> 13 13 14 <?php do_action( 'bp_before_blogs_loop' ); ?> 14 <?php 15 16 /** 17 * Fires before the start of the blogs loop. 18 * 19 * @since BuddyPress (1.2.0) 20 */ 21 do_action( 'bp_before_blogs_loop' ); ?> 15 22 16 23 <?php if ( bp_has_blogs( bp_ajax_querystring( 'blogs' ) ) ) : ?> … … 28 35 </div> 29 36 30 <?php do_action( 'bp_before_directory_blogs_list' ); ?> 37 <?php 38 39 /** 40 * Fires before the blogs directory list. 41 * 42 * @since BuddyPress (1.1.0) 43 */ 44 do_action( 'bp_before_directory_blogs_list' ); ?> 31 45 32 46 <ul id="blogs-list" class="item-list" role="main"> … … 43 57 <div class="item-meta"><span class="activity"><?php bp_blog_last_active(); ?></span></div> 44 58 45 <?php do_action( 'bp_directory_blogs_item' ); ?> 59 <?php 60 61 /** 62 * Fires after the listing of a blog item in the blogs loop. 63 * 64 * @since BuddyPress (1.2.0) 65 */ 66 do_action( 'bp_directory_blogs_item' ); ?> 46 67 </div> 47 68 48 69 <div class="action"> 49 70 50 <?php do_action( 'bp_directory_blogs_actions' ); ?> 71 <?php 72 73 /** 74 * Fires inside the blogs action listing area. 75 * 76 * @since BuddyPress (1.1.0) 77 */ 78 do_action( 'bp_directory_blogs_actions' ); ?> 51 79 52 80 <div class="meta"> … … 65 93 </ul> 66 94 67 <?php do_action( 'bp_after_directory_blogs_list' ); ?> 95 <?php 96 97 /** 98 * Fires after the blogs directory list. 99 * 100 * @since BuddyPress (1.1.0) 101 */ 102 do_action( 'bp_after_directory_blogs_list' ); ?> 68 103 69 104 <?php bp_blog_hidden_fields(); ?> … … 93 128 <?php endif; ?> 94 129 95 <?php do_action( 'bp_after_blogs_loop' ); ?> 130 <?php 131 132 /** 133 * Fires after the display of the blogs loop. 134 * 135 * @since BuddyPress (1.2.0) 136 */ 137 do_action( 'bp_after_blogs_loop' ); ?> -
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' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/blogs/index.php
r9604 r9761 1 <?php do_action( 'bp_before_directory_blogs' ); ?> 1 <?php 2 3 /** 4 * Fires at the top of the blogs directory template file. 5 * 6 * @since BuddyPress (1.5.0) 7 */ 8 do_action( 'bp_before_directory_blogs' ); ?> 2 9 3 10 <div id="buddypress"> 4 11 <form action="" method="post" id="blogs-directory-form" class="dir-form"> 5 12 6 <?php do_action( 'bp_before_directory_blogs_content' ); ?> 13 <?php 14 15 /** 16 * Fires before the display of the blogs listing content. 17 * 18 * @since BuddyPress (1.1.0) 19 */ 20 do_action( 'bp_before_directory_blogs_content' ); ?> 7 21 8 22 <div id="blog-dir-search" class="dir-search" role="search"> … … 22 36 <?php endif; ?> 23 37 24 <?php do_action( 'bp_blogs_directory_blog_types' ); ?> 38 <?php 39 40 /** 41 * Fires inside the unordered list displaying blog types. 42 * 43 * @since BuddyPress (1.2.0) 44 */ 45 do_action( 'bp_blogs_directory_blog_types' ); ?> 25 46 26 47 </ul> … … 30 51 <ul> 31 52 32 <?php do_action( 'bp_blogs_directory_blog_sub_types' ); ?> 53 <?php 54 55 /** 56 * Fires inside the unordered list displaying blog sub-types. 57 * 58 * @since BuddyPress (1.5.0) 59 */ 60 do_action( 'bp_blogs_directory_blog_sub_types' ); ?> 33 61 34 62 <li id="blogs-order-select" class="last filter"> … … 40 68 <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option> 41 69 42 <?php do_action( 'bp_blogs_directory_order_options' ); ?> 70 <?php 71 72 /** 73 * Fires inside the select input listing blogs orderby options. 74 * 75 * @since BuddyPress (1.2.0) 76 */ 77 do_action( 'bp_blogs_directory_order_options' ); ?> 43 78 44 79 </select> … … 53 88 </div><!-- #blogs-dir-list --> 54 89 55 <?php do_action( 'bp_directory_blogs_content' ); ?> 90 <?php 91 92 /** 93 * Fires inside and displays the blogs content. 94 * 95 * @since BuddyPress (1.1.0) 96 */ 97 do_action( 'bp_directory_blogs_content' ); ?> 56 98 57 99 <?php wp_nonce_field( 'directory_blogs', '_wpnonce-blogs-filter' ); ?> 58 100 59 <?php do_action( 'bp_after_directory_blogs_content' ); ?> 101 <?php 102 103 /** 104 * Fires after the display of the blogs listing content. 105 * 106 * @since BuddyPress (1.1.0) 107 */ 108 do_action( 'bp_after_directory_blogs_content' ); ?> 60 109 61 110 </form><!-- #blogs-directory-form --> 62 111 63 <?php do_action( 'bp_after_directory_blogs' ); ?> 112 <?php 113 114 /** 115 * Fires at the top of the blogs directory template file. 116 * 117 * @since BuddyPress (1.5.0) 118 */ 119 do_action( 'bp_after_directory_blogs' ); ?> 64 120 65 121 </div>
Note: See TracChangeset
for help on using the changeset viewer.