Advertisement
arie_cristianD

remove_endpoint_from_account_menu

Sep 24th, 2023
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. add_filter(
  2.     'jnews_account_page_endpoint',
  3.     'remove_account_endpoint',
  4.     99
  5. );
  6.  
  7. function remove_account_endpoint( $enpoint ) {
  8.     unset( $enpoint['post_view_stats'] ); //for post post view status
  9.     unset( $enpoint['liked'] ); // for liked post
  10.     unset( $enpoint['disliked'] ); //for disliked post
  11.     return $enpoint;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement