sbrajesh

Brajesh Singh

Apr 29th, 2010
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2. add_action("bp_nav_items","show_user_link");
  3. function show_user_link(){
  4. if(!is_user_logged_in())
  5. return;
  6. ?>
  7. <li<?php if ( bp_is_home()) : ?> class="selected"<?php endif; ?>>
  8.                                            
  9. <a href="<?php echo bp_loggedin_user_domain() ?>">MY Profile</a>
  10. </li>
  11. <?php
  12.  
  13. }
  14. ?>
Add Comment
Please, Sign In to add comment