Advertisement
hendrajeg

Custom item dropdown

May 17th, 2022
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. add_filter('jnews_dropdown_link', function ($dropdown) {
  2.     if ( is_user_logged_in() )
  3.     {
  4.         $item = [];
  5.         $item['custom'] = array(
  6.             'text' => 'Custom',
  7.             'url'  => esc_url( jnews_home_url_multilang( '/your-custom-link' ) )
  8.         );
  9.         $dropdown = array_merge( $item, $dropdown );
  10.     }
  11.  
  12.     return $dropdown;
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement