Advertisement
Aurangajeb

redirect author to other page by clicking the author link

Aug 14th, 2021
1,750
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. //redirect author to another page by clicking the author link
  2.  
  3. add_filter('author_link', 'modify_author_link',10,1);
  4.  
  5.     function modify_author_link ($link){
  6.     $link ="https://example.com/account";
  7.     return $link;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement