Forums
-
- Forum
- Posts
-
- Installation
- 28,498
- Troubleshooting
- 62,607
- Themes
- 10,431
- Plugins
- 15,360
- Requests & Feedback
- 14,971
- Showcase
- 3,256
-
The filter will only be passed one argument by default, so you need to change your add_filter() call to this:
add_filter('get_user_profile_link', 'ss_get_user_profile_link', 10, 2);
.
The third parameter is the priority, the second is the number of arguments to pass.