Changeset 12567
- Timestamp:
- 03/06/2020 09:41:44 PM (6 years ago)
- Location:
- trunk/src/bp-templates/bp-nouveau
- Files:
-
- 8 edited
-
buddypress/activity/index.php (modified) (2 diffs)
-
buddypress/blogs/index.php (modified) (2 diffs)
-
buddypress/groups/index.php (modified) (2 diffs)
-
buddypress/members/index.php (modified) (2 diffs)
-
includes/blogs/template-tags.php (modified) (2 diffs)
-
includes/groups/template-tags.php (modified) (2 diffs)
-
includes/members/template-tags.php (modified) (2 diffs)
-
includes/template-tags.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/buddypress/activity/index.php
r12082 r12567 4 4 * 5 5 * @since 2.3.0 6 * @version 3.0.06 * @version 6.0.0 7 7 */ 8 8 ?> … … 40 40 </div><!-- // .screen-content --> 41 41 42 <?php bp_nouveau_after_directory_page(); ?> -
trunk/src/bp-templates/bp-nouveau/buddypress/blogs/index.php
r12082 r12567 4 4 * 5 5 * @since 3.0.0 6 * @version 3.0.06 * @version 6.0.0 7 7 */ 8 8 ?> … … 27 27 </div><!-- // .screen-content --> 28 28 29 <?php bp_nouveau_after_directory_page(); ?> -
trunk/src/bp-templates/bp-nouveau/buddypress/groups/index.php
r12082 r12567 4 4 * 5 5 * @since 3.0.0 6 * @version 3.0.06 * @version 6.0.0 7 7 */ 8 8 ?> … … 29 29 </div><!-- // .screen-content --> 30 30 31 <?php bp_nouveau_after_directory_page(); ?> -
trunk/src/bp-templates/bp-nouveau/buddypress/members/index.php
r12082 r12567 3 3 * BuddyPress Members Directory 4 4 * 5 * @version 3.0.0 5 * @since 3.0.0 6 * @version 6.0.0 6 7 */ 7 8 … … 26 27 <?php bp_nouveau_after_members_directory_content(); ?> 27 28 </div><!-- // .screen-content --> 29 30 <?php bp_nouveau_after_directory_page(); ?> -
trunk/src/bp-templates/bp-nouveau/includes/blogs/template-tags.php
r12480 r12567 4 4 * 5 5 * @since 3.0.0 6 * @version 3.0.06 * @version 6.0.0 7 7 */ 8 8 … … 72 72 */ 73 73 do_action( 'bp_after_directory_blogs' ); 74 75 /**76 * Fires at the bottom of the blogs directory template file.77 *78 * @since 2.3.079 */80 do_action( 'bp_after_directory_blogs_page' );81 74 } 82 75 -
trunk/src/bp-templates/bp-nouveau/includes/groups/template-tags.php
r12407 r12567 4 4 * 5 5 * @since 3.0.0 6 * @version 4.4.06 * @version 6.0.0 7 7 */ 8 8 … … 66 66 */ 67 67 do_action( 'bp_after_directory_groups' ); 68 69 /**70 * Fires at the bottom of the groups directory template file.71 *72 * @since 1.5.073 */74 do_action( 'bp_after_directory_groups_page' );75 68 } 76 69 -
trunk/src/bp-templates/bp-nouveau/includes/members/template-tags.php
r12280 r12567 4 4 * 5 5 * @since 3.0.0 6 * @version 3.1.06 * @version 6.0.0 7 7 */ 8 8 … … 73 73 */ 74 74 do_action( 'bp_after_directory_members' ); 75 76 /**77 * Fires at the bottom of the members directory template file.78 *79 * @since 1.5.080 */81 do_action( 'bp_after_directory_members_page' );82 75 } 83 76 -
trunk/src/bp-templates/bp-nouveau/includes/template-tags.php
r12537 r12567 4 4 * 5 5 * @since 3.0.0 6 * @version 4.0.06 * @version 6.0.0 7 7 */ 8 8 … … 655 655 656 656 return (bool) $bp_nouveau->{$component}->directory_vertical_layout; 657 } 658 659 /** 660 * Template tag to wrap the Legacy actions that was used 661 * after the components directory page. 662 * 663 * @since 6.0.0 664 */ 665 function bp_nouveau_after_directory_page() { 666 $component = bp_current_component(); 667 668 /** 669 * Fires at the bottom of the activity, members, groups and blogs directory template file. 670 * 671 * @since 1.5.0 Added to the members, groups directory template file. 672 * @since 2.3.0 Added to the blogs directory template file. 673 * @since 6.0.0 Added to the activity directory template file. 674 */ 675 do_action( "bp_after_directory_{$component}_page" ); 657 676 } 658 677
Note: See TracChangeset
for help on using the changeset viewer.