Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,045
- How-to & Troubleshooting
- 129,731
- Creating & Extending
- 25,801
- Requests & Feedback
- 9,505
- Third Party Plugins
- 9,793
- Showcase
- 3,316
- Ideas
- 1,375
- Miscellaneous
- 9,181
-
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’ );