Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Google Buzz button


r-a-y
Keymaster

@r-a-y

Instead of modifying a template file, you can also hook into the following action:
bp_activity_entry_meta.

function my_gbuzz() {
echo ‘whatever’;
}
add_action( ‘bp_activity_entry_meta’, ‘my_gbuzz’ );

Skip to toolbar