Advertisement
GochiSiyan

add menu

Oct 19th, 2021
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. add_filter('jnews_dropdown_link', function ($dropdown) {
  2. if ( is_user_logged_in() )
  3. {
  4. $item = [];
  5. $item['subscribe'] = array(
  6. 'text' => 'Subscription',
  7. 'url' => esc_url( home_url_multilang( 'account/my-subscription' ) )
  8. );
  9. $item['unlock'] = array(
  10. 'text' => 'Unlocked Posts',
  11. 'url' => esc_url( home_url_multilang( 'account/unlocked-posts' ) )
  12. );
  13. $dropdown = array_merge( $item, $dropdown );
  14. }
  15.  
  16. return $dropdown;
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement