Advertisement
GochiSiyan

remove menu item

May 18th, 2021
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_filter('jnews_account_page_endpoint',function ($endpoint) {
  2. $del_val = [
  3. // 'account',
  4. // 'edit_account',
  5. 'change_password',
  6. 'my_post',
  7. 'jnews_paywall_sub',
  8. 'my_video',
  9. ];
  10. foreach ($del_val as $val){
  11. unset($endpoint[$val]);
  12. }
  13. return $endpoint;
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement