Subdomain Posts
PHP | 136 days ago
PHP | 148 days ago
Recent Posts
None | 2 sec ago
None | 9 sec ago
ActionScript 3 | 18 sec ago
None | 27 sec ago
Python | 32 sec ago
OCaml | 42 sec ago
None | 51 sec ago
None | 57 sec ago
Python | 1 min ago
None | 1 min ago
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By sbrajesh on the 24th of Oct 2009 08:01:48 PM
Download |
Raw |
Embed |
Report
<?php
remove_action( 'bp_adminbar_logo', 'bp_adminbar_logo' );/*remove the default buddypress style logo(text of your sitename)
*/
//now add your own logo here
add_action( 'bp_adminbar_logo', 'my_bp_adminbar_logo' );
function my_bp_adminbar_logo()
{
//output the logo
//output the logo
global $bp;
echo '<a href="' . $bp->root_domain . '"><img id="admin-bar-logo" src="http://yoursite.com/logo.gif" alt="your site title" /></a>';
/*
please note ,you must replace http://yoursite.com/log.gif with the url of your logo*/
}
?>
Submit a correction or amendment below.
Make A New Post