bp_post_author_avatar
The BuddyPress bp post author avatar hook.
Description
Parameters (1)
- 0. $bp_core_fetch_avatar — Optional. (string) =>
bp_core_fetch_avatar( array( 'item_id' => $post->post_author, 'type' => 'thumb', 'alt' => sprintf( __( 'Profile photo of %s', 'buddypress' ), bp_core_get_user_displayname( $post->post_author ) ) ) )
- The bp core fetch avatar.
Usage
- To run the hook, copy the example below.
- $bp_core_fetch_avatar = apply_filters( 'bp_post_author_avatar', $bp_core_fetch_avatar );
- if ( !empty( $bp_core_fetch_avatar ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_post_author_avatar callback
- function filter_bp_post_author_avatar( $bp_core_fetch_avatar ) {
- // make filter magic happen here...
- return $bp_core_fetch_avatar;
- };
- // add the filter
- add_filter( 'bp_post_author_avatar', 'filter_bp_post_author_avatar', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_post_author_avatar', 'filter_bp_post_author_avatar', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-core/bp-core-template.php
- echo apply_filters( 'bp_post_author_avatar', bp_core_fetch_avatar( array(