Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/28/2015 01:52:18 AM (10 years ago)
Author:
tw2113
Message:

Adds hooks documentation for the members template files.

Fixes #5948.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile.php

    r9604 r9814  
    1616</div><!-- .item-list-tabs -->
    1717
    18 <?php do_action( 'bp_before_profile_content' ); ?>
     18<?php
     19
     20/**
     21 * Fires before the display of member profile content.
     22 *
     23 * @since BuddyPress (1.1.0)
     24 */
     25do_action( 'bp_before_profile_content' ); ?>
    1926
    2027<div class="profile" role="main">
     
    5259</div><!-- .profile -->
    5360
    54 <?php do_action( 'bp_after_profile_content' ); ?>
     61<?php
     62
     63/**
     64 * Fires after the display of member profile content.
     65 *
     66 * @since BuddyPress (1.1.0)
     67 */
     68do_action( 'bp_after_profile_content' ); ?>
Note: See TracChangeset for help on using the changeset viewer.