Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: get_user_profile_link bug?


Sam Bauers
Participant

@sambauers

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.

Skip to toolbar