bp_nouveau_wp_profile_hooks( $type = 'before' )
Template tag to wrap all Legacy actions that was used before and after the WP User’s Profile.
Source Source
File: bp-templates/bp-nouveau/includes/members/template-tags.php
function bp_nouveau_wp_profile_hooks( $type = 'before' ) { if ( 'before' === $type ) { /** * Fires before the display of member profile loop content. * * @since 1.2.0 */ do_action( 'bp_before_profile_loop_content' ); /** * Fires before the display of member profile field content. * * @since 1.1.0 */ do_action( 'bp_before_profile_field_content' ); } else { /** * Fires after the display of member profile field content. * * @since 1.1.0 */ do_action( 'bp_after_profile_field_content' ); /** * Fires and displays the profile field buttons. * * @since 1.1.0 */ do_action( 'bp_profile_field_buttons' ); /** * Fires after the display of member profile loop content. * * @since 1.2.0 */ do_action( 'bp_after_profile_loop_content' ); } }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |