Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,011
- How-to & Troubleshooting
- 129,533
- Creating & Extending
- 25,788
- Requests & Feedback
- 9,496
- Third Party Plugins
- 9,784
- Showcase
- 3,316
- Ideas
- 1,406
- Miscellaneous
- 9,170
-
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