Advertisement
arie_cristianD

only show account & logout on dropdown account menu

Feb 26th, 2025
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. add_filter( 'jnews_dropdown_link', 'remove_additioanl_dropdown', 99 );
  2.  
  3. function remove_additioanl_dropdown( $dropdown ) {
  4.     if ( is_user_logged_in() ) {
  5.         $new_dropdown = array_filter(
  6.             $dropdown,
  7.             function ( $key ) {
  8.                 return 'account' === $key || 'logout' === $key;
  9.             },
  10.             ARRAY_FILTER_USE_KEY
  11.         );
  12.         return $new_dropdown;
  13.     }
  14.  
  15.     return $dropdown;
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement