Share Pastebin
Guest
Public paste!

sbrajesh

By: a guest | Oct 24th, 2009 | Syntax: PHP | Size: 0.54 KB | Hits: 260 | Expires: Never
Copy text to clipboard
  1. <?php
  2. remove_action( 'bp_adminbar_logo', 'bp_adminbar_logo' );/*remove the default buddypress style logo(text of your sitename)
  3. */
  4. //now add your own logo here
  5. add_action( 'bp_adminbar_logo', 'my_bp_adminbar_logo' );
  6.  
  7. function my_bp_adminbar_logo()
  8. {
  9. //output the logo
  10. //output the logo
  11. global $bp;
  12.        
  13. echo '<a href="' . $bp->root_domain . '"><img id="admin-bar-logo" src="http://yoursite.com/logo.gif" alt="your site title" /></a>';
  14.  
  15.  
  16. /*
  17. please note ,you must replace http://yoursite.com/log.gif with the url of your logo*/
  18.  
  19. }
  20. ?>