Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,003
- How-to & Troubleshooting
- 129,526
- Creating & Extending
- 25,789
- Requests & Feedback
- 9,495
- Third Party Plugins
- 9,781
- Showcase
- 3,316
- Ideas
- 1,397
- Miscellaneous
- 9,169
-
If you don’t have one yet, create file named bp-custom.php and add the code below then upload to server in wp-content/plugins/ folder
<?php
remove_action( 'bp_adminbar_logo', 'bp_adminbar_logo' );
function my_adminbar_name() {
global $bp;
echo '<li><a>root_domain . '">' . Website Connect . '</a></li>';
}
add_action('bp_adminbar_menus', 'my_adminbar_name', 1);
?>
Replace “Website Connect” with what you want.
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS