Forums
-
- Forum
- Posts
-
- Installation
- 28,380
- Troubleshooting
- 62,269
- Themes
- 10,391
- Plugins
- 15,313
- Requests & Feedback
- 14,924
- Showcase
- 3,252
-
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.