Advertisement
GochiSiyan

add dropdown

Dec 30th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. add_filter('jnews_dropdown_link',function ($dropdown){
  2. $dropdown[]=array(
  3. 'custom_menu_1' => array(
  4. 'text' => 'Custom Menu 1', // Custom Name
  5. 'url' => home_url( '/' ), // Custom URL
  6. ));
  7. return $dropdown;
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement