Forums
-
- Forum
- Posts
-
- Installation
- 28,536
- Troubleshooting
- 62,801
- Themes
- 10,444
- Plugins
- 15,389
- Requests & Feedback
- 14,986
- Showcase
- 3,257
-
function my_get_forum_link_filter( $link ) {
$link = 'yay'; // Whatever you want to do with the link
return $link; // Very important line!
}
add_filter( 'get_forum_link', 'my_get_forum_link_filter' );
That last line adds your custom filter function to the get_forum_link filters.