arie_cristianD

show only edit account and logout on account dropdown

Oct 30th, 2025
738
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. add_filter( 'jnews_dropdown_link', 'j_edit_account_dropdown', 99 );
  2.  
  3. function j_edit_account_dropdown( $dropdown ) {
  4.     if ( is_user_logged_in() ) {
  5.         $new_dropdown = array();
  6.         if ( isset( $dropdown['edit-account'] ) ) {
  7.             $new_dropdown['edit-account'] = $dropdown['edit-account'];
  8.         }
  9.         if ( isset( $dropdown['logout'] ) ) {
  10.             $new_dropdown['logout'] = $dropdown['logout'];
  11.         }
  12.  
  13.         if ( isset( $new_dropdown ) ) {
  14.             return $new_dropdown;
  15.         }
  16.     }
  17.     return $dropdown;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment