Re: BuddyPress-Links 0.3 FINAL is here at last
@WPin.me
Very cool! I’m glad that people are starting to play with extending this plugin. I tried hard to provide as many hooks as possible.
If you want to avoid hacking the core template you could do something like this in your functions.php:
function my_selfserv_sexy() {
if( function_exists( 'selfserv_sexy' ) ) {
selfserv_sexy();
}
}
add_action( 'bp_link_header_meta', 'my_selfserv_sexy' );
Now you can upgrade the plugin without having to modify the template each time.