sbrajesh

Brajesh Singh

May 24th, 2010
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1.  
  2. <?php
  3. /*show a link to user profile in main navigation*/
  4.  
  5.   add_action("bp_nav_items","bpdev_show_user_link");
  6.   function bpdev_show_user_link(){
  7.          if(!is_user_logged_in())
  8.                    return;
  9.                     ?>
  10. <li<?php if ( bp_is_home()) : ?> class="selected"<?php endif; ?>>
  11.                                                                      
  12. <a href="<?php echo bp_loggedin_user_domain() ?>">My Profile</a>
  13.  
  14. </li>
  15.  
  16. <?php
  17.  
  18.  
  19.  
  20. }
  21.  
  22. ?>
Add Comment
Please, Sign In to add comment