Aurangajeb

Alter the Post links name from frontend account

Nov 1st, 2019 (edited)
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. /* Alter the Post links name from frontend account */
  2.  
  3. add_filter('wpuf_my_account_tab_links', 'remove_posts_link');
  4.  
  5. function remove_posts_link($tabs){
  6.  
  7.         $tabs['posts']['label'] = 'Event Posts';
  8.  
  9.     return $tabs;
  10. }
Add Comment
Please, Sign In to add comment