Advertisement
Guest User

Untitled

a guest
Jun 25th, 2013
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. function my_custom_follow_button_args( $button_args, $leader_id, $follower_id ) {
  2.     $button_args['link_text'] = '<img src="LINK TO IMAGE HERE" alt="" />';
  3.  
  4.     return $button_args;
  5. }
  6. add_filter( 'bp_follow_get_add_follow_button', 'my_custom_follow_button_args', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement