Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,032
- How-to & Troubleshooting
- 129,672
- Creating & Extending
- 25,794
- Requests & Feedback
- 9,497
- Third Party Plugins
- 9,793
- Showcase
- 3,316
- Ideas
- 1,375
- Miscellaneous
- 9,181
-
create a file called new-menu-item.php and put it in your mu-plugins folder then add this code to your file:
<?php
function add_test_to_main_menu() {
echo '<li <a href="http://yoursite.com/Url-of-test/">Test</a></li>';
}
add_action('bp_nav_items', 'add_test_to_main_menu');
?>